Skip to content

Latest commit

 

History

History
69 lines (51 loc) · 1.88 KB

README.md

File metadata and controls

69 lines (51 loc) · 1.88 KB

React simple start kit

React Webpack

Want to start the new project with React and looking for project seed? You on the right page! Why you should use this configuration:

👉 100% pure React seed

👉 100% applicable for starting any project on React

👉 Including the dev server with hot reloading for components

No test library/state manager included, I'm not gone to force you to use some specific technology, choose it by yourself.

Getting started

Fork this repo and then clone/download it from the Github:

git clone https://github.com/your_username/your_fork_name.git

Go to project root directory cd ./react-simple-start-kit and install all dependencies:

npm i

Start the dev server:

npm run start

Then check out http://localhost:3000/, you should see the page:

schemamockpost

Files structure:

app
├── node_modules
├── src
│     ├── assets
|     |      └── images
|     |            └── react.png
|     ├── components
|     |      ├── index.js
|     |      └── ImportedComponent.js
|     ├── App.js
|     ├── index.css
|     └── index.js
├── babel.config
├── index.html
├── package.json
├── package-lock.json
├── server.js
├── webpack.config.dev
├── webpack.config
└── webpack.config.prod

How to

  • Add new absolute path: open webpack.config.js find
resolve: {
    alias: {
      components: path.resolve(__dirname, './src/components'),
      assets: path.resolve(__dirname, './src/assets'),
    }
  }

and add new property in alias object