Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webbestmaster/react-form-master
React Form Master
https://github.com/webbestmaster/react-form-master
Last synced: 28 days ago
JSON representation
React Form Master
- Host: GitHub
- URL: https://github.com/webbestmaster/react-form-master
- Owner: webbestmaster
- License: mit
- Created: 2019-09-27T11:49:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-27T17:49:23.000Z (over 5 years ago)
- Last Synced: 2024-11-14T22:34:37.332Z (3 months ago)
- Language: JavaScript
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
# react-form-master
React Form Master## Installation:
### Install libpng-dev for pngquant (need for webpack):
```bash
$ [sudo] apt-get install --no-install-recommends gcc make libpng-dev
```### Install other npm modules:
```bash
$ npm i
```### Build app:
```bash
$ npm run build
```### Other
### weinre - WEb INspector REmote.
Install
```bash
$ [sudo] npm i [-g] weinre
```To run
```bash
$ weinre --boundHost 172.21.1.215 --httpPort 8080
```To bound ip
> --boundHost 172.21.1.215To bound port
> --httpPort 8080Add in your index.html
```HTML```
### Fix IDEA file watching
1. Add the following line to either /etc/sysctl.conf file or a new *.conf file (e.g. idea.conf) under /etc/sysctl.d/ directory:
```
fs.inotify.max_user_watches = 524288
```2. Then run this command to apply the change:
```bash
$ sudo sysctl -p --system
```And don't forget to restart your IDE.
Note: the watches limit is per-account setting. If there are other programs running under the same account which also uses Inotify the limit should be raised high enough to suit needs of all of them.
### NPM packages
You can use npm-check-updates
```bash
$ [sudo] npm i -g npm-check-updates
$ ncu [-u]
```## Setup environment for Ubuntu
At first install nodejs (if needed).```bash
$ sudo apt-get clean
$ sudo apt-get update
$ sudo apt-get install nasm
$ sudo apt-get install build-essential
$ sudo apt-get install gcc
$ sudo apt-get install --no-install-recommends -y gcc make libpng-dev
```