# npm-css **Repository Path**: mirrors_defunctzombie/npm-css ## Basic Information - **Project Name**: npm-css - **Description**: Require css from npm - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # npm-css Require css from node modules. ## Syntax ``` css @import "typeahead"; @import "./foo.css"; @import "./bar/baz.css"; .foo { color: red } ``` npm-css reads css imports in the format of `@import " ... "` and inlines the CSS at that path for you. It also understands node modules. If you `@import` a folder it will try to look for a package.json file or read `index.css` by default. See the `package.json` section below. ## CLI To build a single css file from an entry.css with @import statements. `npm-css entry.css -o bundle.css` ## API If you want to build css files on the fly. ```javascript var npmcss = require('npm-css'); var css = npmcss('/path/to/file'); ``` ## package.json You can specify the stylesheet for your module by adding a `"style"` field to your package.json file. This works similarly to the `"main"` field. ## Installation `npm install npm-css` ## MIT Licenced