0.1.12 • Published 7 years ago

respa v0.1.12

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

respa v0.1.12

Respa is a React/Redux based SPA framework, which has already made the hard choices for you and you can keep your code base extremely clean.

The document is working on progress, you can refer to the demo, we'll add more examples later. To run the demo:

respa$ cd demo
demo$ yarn install
demo$ npx respa

If you're interested in this project please tell me: i@bestmike007.com

Respa Project Structure

Asuming that webapp is your code base root. These files are used by respa framework:

Use Respa

Respa must be installed locally in order to make dependencies available.

webapp$ yarn add respa

To start the hot reload dev server:

webapp$ ./node_modules/.bin/respa
# or
webapp$ ./node_modules/.bin/respa dev
# or use npx
webapp$ npx respa

To build for production:

webapp$ ./node_modules/.bin/respa build
# or
webapp$ ./node_modules/.bin/respa dist
# or use npx
webapp$ npx respa build