https://github.com/wbkd/react-starter
🚀 A minimal react boilerplate featuring easy-peasy state management and styled-components
https://github.com/wbkd/react-starter
babel boilerplate easy-peasy react starterkit styled-components
Last synced: about 1 year ago
JSON representation
🚀 A minimal react boilerplate featuring easy-peasy state management and styled-components
- Host: GitHub
- URL: https://github.com/wbkd/react-starter
- Owner: wbkd
- License: mit
- Created: 2017-01-10T11:31:37.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2024-02-05T04:26:49.000Z (over 2 years ago)
- Last Synced: 2025-03-24T09:52:50.509Z (about 1 year ago)
- Topics: babel, boilerplate, easy-peasy, react, starterkit, styled-components
- Language: JavaScript
- Homepage:
- Size: 4.7 MB
- Stars: 115
- Watchers: 3
- Forks: 21
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# React Starter
[](https://dependabot.com/)
A minimal starting point for interactive applications that we build at [webkid](https://webkid.io). The boilerplate already includes some basic components as well as hooks and utils that we are often using in our projects.
The starterkit is based on these libraries:
- [react](https://facebook.github.io/react/)
- [easy-peasy](https://easy-peasy.now.sh/)
- [emotion](https://emotion.sh/docs/styled)
## Getting started
**[Create a new Github repository with the template](https://github.com/wbkd/react-starter/generate)** or clone the repo:
```sh
git clone git@github.com:wbkd/react-starter.git && cd react-starter
```
then install the dependencies via [npm](https://npmjs.org):
```sh
npm install
```
you are now ready to develop your app.
## Development
Builds the application and starts a webserver with hot loading.
Runs on [localhost:8080](http://localhost:8080/)
```sh
npm run start
```
## Build
Builds a minified version of the application in the build folder.
```sh
npm run build
```
Additionally, a zipped version of the bundle is added as `build.zip`. We often use this for our clients to upload the application to their own servers.