npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ignore-stylesheet-loader

v1.0.0

Published

ignore stylesheets files for react server rendering

Downloads

2

Readme

css-path-loader

webpack loader to write React with module css.

generate unique className for every React component based on directory path.

To let module css work, you should use html-path-loader is the mean time.

Note

your style files (scss or less) and your react files should in the same directory.

+-- home
|   +-- home.jsx
|   +-- home.scss
+-- about
|   +-- about.jsx
|   +-- about.scss

If you decide to separate all the styles file and your react files in different directory, this loader is not good choice.

Usage

Based on every react component's path, in the precompile moment, wrap every style files with a name


    // Assume this scss files relative path from this project is `src/component/test/index.js`, then the className is `.src-component-test`
    .src-component-test {

        // the original code from scss file
        ...
    }

the html-path-loader will generate the same className for every components and every style files. And the react css module could be work.

Config

 module: {
            loaders: [
                {
                    test: /\.(scss|less)/,
                    loaders: ['css-path-loader']
                }
            ]
        }

Tips

  • If you use require to require a css file from node_modules, this loader will ignore it
  • If you need to add global css file, please use require in your entry js file
  • Except entry file, do not use require to load a file that is from other directory(node_modules ), use @import

css 模块化工具

通过为每个 react 组件生成唯一的 className 值来实现 css 组件化

此loader需要和 html-path-loader 配合使用才能发挥作用

scss 文件或者 less 文件必须和 react 组件文件必须放置在同一目录下,

如果样式和组件是完全分开放置请不要使用这个 loader,

Usage

自动根据每一个 react 组件所在的路径, 在编译期间, 将该组件 require 的所有scss或者 less 代码代码包上一个


    // 特殊的类, 在这个类内部的所有代码都会被转移到全局域中
    ._global {
        body {
          background: #000;
        }
    }

    // 假设这个 react 组件根据当前项目所在的相对路径为`src/component/test/index.js`, 自动根据路径生成 class 名
    .src-component-test {

        // react 组件引入的样式文件源码
        ...
    }

有了这个 loader 自动根据每个组件的文件所在路径生成 class 名称, 配合html-path-loader 会生成相同的 class 名称, 从而实现 css 模块化

Config

 module: {
            loaders: [
                {
                    test: /\.(scss|less)/,
                    exclude: /node_modules/,
                    loaders: ['css-path-loader']
                }
            ]
        }

Tips

  • 在js文件中通过 require 引入 npm 安装的 css 文件, 会直接加到全局域中, 和通常 webpack 引入没什么区别
  • 如果在 scss 或者 less 文件中通过 @import 引入 node_modules 里或者其他地方的 scss 或者 less 文件, 都只会作用于当前组件, 所有的样式的作用域也都属于当前组件
  • 如果需要在单个模块中覆盖全局的样式文件, 使用._global 类包装即可
  • 全局引入样式文件只需在 webpack.js 中定义的 entry 文件中通过 require 引入即可
  • 除了 webpack 定义的 entry 文件, 其他 js和jsx 文件都不要用 require 加载非当前目录下的 scss和less 文件!!