Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fil1994/react-template
A CLI for generating a React app template
https://github.com/fil1994/react-template
cli less nodejs react template
Last synced: about 1 month ago
JSON representation
A CLI for generating a React app template
- Host: GitHub
- URL: https://github.com/fil1994/react-template
- Owner: FIL1994
- License: mit
- Created: 2019-01-12T02:33:45.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-20T01:16:05.000Z (over 5 years ago)
- Last Synced: 2024-12-30T01:39:10.974Z (about 1 month ago)
- Topics: cli, less, nodejs, react, template
- Language: JavaScript
- Homepage:
- Size: 107 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @philvr/react-template ![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg?style=flat-square) ![npm (scoped)](https://img.shields.io/npm/v/@philvr/react-template.svg?style=flat-square) [![](https://img.shields.io/badge/speed-blazing%20%F0%9F%94%A5-brightgreen.svg)](https://twitter.com/acdlite/status/974390255393505280)
A CLI for generating a React app template## Instructions
1. Install
```
npm i -g @philvr/react-template
```2. Create a new project
```
react-template my-app
cd my-app
npm run start
```## What's Included
- [React](https://github.com/facebook/react), JSX, ES7, [Less](https://github.com/less/less.js) and [optional chaining](https://github.com/tc39/proposal-optional-chaining) support## Folder Structure
```
app
├──node_modules
├──src
│ ├──components
│ │ ├──App.js
│ ├──styles
│ │ ├──index.less
│ ├──index.html
│ └──index.js
├──.babelrc
├──.gitignore
├──package.json
├──README.md
└──webpack.config.js
```