Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting Started With stylus-loader for Webpack

Tags:

webpack

Alright so (new to this):

I just added my stylus-loader, style-loader (as recommended by stylus-loader) and the loader { test: /\.styl$/, loader: 'style-loader!css-loader!stylus-loader' } to the webpack config. Now on my Main.js file I'm adding var css = require('!css!stylus!./Main.styl');. So, should I be seeing the compiled css in the html now ? Not sure if I'm getting this right.

webpack.config.js

webpackConfig = {
    context: __dirname,
    entry: {
        app: ['webpack/hot/dev-server','./index.js']
    },
    output: {
        path: __dirname,
        filename: 'bundle.js'
    },
    module: {
        loaders: [
            { test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader'},
            { test: /\.styl$/, loader: 'style-loader!css-loader!stylus-loader' }
        ]
    }
}

module.exports = webpackConfig;

index.js

var React = require('react');
var Main = require('./App/Components/Main');

class App extends React.Component{
    render(){
        return (
            <Main />
        )
    }   
}

React.render(<App />, document.getElementById('main'));

Main.js

'use strict'

import React from 'react';
import ReactCanvas from 'react-canvas';
var css = require('!css!stylus!./Main.styl'); 

var {
    Surface
} = ReactCanvas;

class Main extends React.Component{
    constructor() {
        super();
        this.size = document.getElementById('main').getBoundingClientRect() 
    }

    render() {
        return (
            <Surface top={0} left={0} width={this.size.width} height={this.size.height}>
            </Surface>
        )
    }
}

module.exports = Main

index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>React Canvas</title>
</head>
<body>


    <header>
        <h1>React Canvas</h1>
    </header>

    <div id="main"></div>

    <script src="http://localhost:8080/webpack-dev-server.js"></script>
    <script src="bundle.js"></script>
</body>
</html>
like image 653
Alain Jacomet Forte Avatar asked Mar 11 '26 21:03

Alain Jacomet Forte


1 Answers

You can replace

var css = require('!css!stylus!./Main.styl');

with

var css = require('./Main.styl');

thanks to your setup.

The CSS will get converted into JavaScript and included in the JavaScript bundle by default.

I hope this helps.

like image 78
Juho Vepsäläinen Avatar answered Mar 15 '26 07:03

Juho Vepsäläinen



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!