29 lines
665 B
Plaintext
29 lines
665 B
Plaintext
# React version
|
|
|
|
## Intro
|
|
It uses Sass (with .scss). The style is loaded at the component level.
|
|
|
|
Dependencies can be handled by **npm**.
|
|
|
|
## Directories
|
|
```
|
|
React_Full_Project/
|
|
├── src/ (js|jsx source)
|
|
├── scss/ (scss source)
|
|
├── public/ (html template)
|
|
├── img/ (images)
|
|
```
|
|
|
|
## Usage
|
|
**npm i** - to install dependencies
|
|
|
|
## Sctipts
|
|
**npm start** for developing (it runs webpack-dev-server)
|
|
**npm run build** to run a dev build
|
|
**npm run clean** to clean build dir
|
|
**npm run dev** to run a dev build with watching filesystem for changes
|
|
|
|
## See also
|
|
|
|
[Changelog](./CHANGELOG.md)
|
|
[Readme](./README.md) |