Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```