Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lesfurets/react-form-engine
https://github.com/lesfurets/react-form-engine
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/lesfurets/react-form-engine
- Owner: lesfurets
- Created: 2019-05-11T22:22:41.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T06:34:50.000Z (about 2 years ago)
- Last Synced: 2024-04-14T06:35:50.568Z (9 months ago)
- Language: TypeScript
- Size: 6.74 MB
- Stars: 2
- Watchers: 11
- Forks: 0
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Boilerplate with ReactJs over NodeJS and Webpack-dev-server
The purpose of the project is to provide a basic working environment to create reactjs component with.
This is a starting point for project using those technologies.
To make development easier, we are using
- JSX
- ES6
- Embeded less style
This configuration enables live reload on both js and less files.## Requirement
You need to have installed:
- npm
- webpack
- webpack-dev-server
- node## Set-up
To import all required modules, after cloning the github project, run in the root directory :
```bash
$ yarn install --pure-lockfile
```
To build the project :
```bash
$ yarn install
```
This command generates a bundle file in the public directory: index.js## Run example
```bash
$ yarn start:example
```## Run tests
```bash
$ yarn test:project
```