New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

css-module-npm-boilerplate-gulp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

css-module-npm-boilerplate-gulp

a boilerplate css module

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

css-module-npm-boilerplate-gulp

npm version

A boilerplate css module.

Fork this and create your own reusable css module to be imported into react, deku, riot, etc... components.

Check out more css modules at cssmodul.es

Compatible

CSS Modules is only compatible with camelCase. However deku and react have mappings to use normal class names.

This module has only camelCase classes so is compatible with:

Install

npm install css-module-npm-boilerplate-gulp --save-dev

Usage

import fancyButton from 'css-module-npm-boilerplate-gulp'

The fancy button css module has a .button and a color style .blue, .green or .red.

Add the classes to your elements to use the styles...

css modules

	return (
        <button className={styles.button + ' ' + styles.blue }>press me</button>
    );

react / deku css modules

	return (
        <button styleName='button blue'>press me</button>
    );

Example

Check out an example of using this css module here

Run it

cd example; npm install; npm start

Development

This version uses gulp to bundle the lib button.css module. For a minimal example of a css module without building with gulp use css-module-npm-boilerplate

The \src folder is for development.

To build to \lib run:

npm run build or gulp

This compiles to fancyButton.css in lib.

License

MIT

Keywords

FAQs

Package last updated on 06 Feb 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc