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

generator-react-seed

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

generator-react-seed

Seed project for React apps using ES6 & webpack

0.0.6
latest
Source
npm
Version published
Weekly downloads
6
Maintainers
1
Weekly downloads
 
Created
Source

generator-react-seed Build Status

Seed project for React apps using ES6 & webpack

This yeoman generator will install base projet files from my react-seed project. You have the option of installing the following features:

  • react-router
  • material-ui

Getting Started

Ensure yeoman is installed:

npm install -g yo

Install generator-react-seed from npm:

npm install -g generator-react-seed

Finally, initiate the generator:

yo react-seed

Files

├── CHANGELOG.md
├── LICENSE
├── README.md
├── app
│   ├── actions
│   │   └── AppActions.js
│   ├── app.jsx
│   ├── components
│   │   ├── App
│   │   │   ├── App.jsx
│   │   │   └── _App.scss
│   │   ├── Body
│   │   │   ├── Body.jsx
│   │   │   └── _Body.scss
│   │   └── Footer
│   │       ├── Footer.jsx
│   │       ├── _Footer.scss
│   │       └── __tests__
│   │           └── Footer-test.js
│   ├── constants
│   │   └── AppConstants.js
│   ├── dispatcher
│   │   └── AppDispatcher.js
│   ├── favicon.ico
│   ├── index.html
│   ├── scss
│   │   ├── _base.scss
│   │   ├── _functions.scss
│   │   ├── _mixins.scss
│   │   ├── _toolkit.scss
│   │   └── app.scss
│   ├── stores
│   │   ├── BaseStore.js
│   │   ├── ItemsStore.js
│   │   └── __tests__
│   │       └── BaseStore-test.js
│   └── util
│       └── WebAPI.js
├── dev-server.js
├── jest-preprocessor.js
├── package.json
└── webpack.config.js

License

Copyright (c) 2015 Richard Willis

MIT (http://opensource.org/licenses/MIT)

Keywords

yeoman-generator

FAQs

Package last updated on 09 May 2015

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