https://github.com/ztrue/fast-and-furious
https://github.com/ztrue/fast-and-furious
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/ztrue/fast-and-furious
- Owner: ztrue
- Created: 2013-09-09T18:39:59.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2017-02-05T16:08:05.000Z (over 9 years ago)
- Last Synced: 2025-04-05T07:08:44.799Z (about 1 year ago)
- Language: JavaScript
- Size: 9.14 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fast and Furious
Node.js framework for rapid development of real-time single-page web applications.
## Quick Start
### Install
```sh
$ npm install faf
```
### Directory Structure
```
%app-name%/
|- client/
| |- src/
| | |- app/
| | | |- %view-name%/
| | | | |- %sub-view-name%/
| | | | | |- ...
| | | | |- ...
| | | | |- %view-name%.js
| | | | |- %view-name%.scss
| | | | |- %view-name%.spec.js
| | | | |- %view-name%.html
| | | |- ...
| | | |- app.js
| | | |- app.scss
| | | |- app.spec.js
| | | |- app.html
| | |- common/
| | | |- directives/
| | | | |- %directive-name%/
| | | | | |- %directive-name%.js
| | | | | |- %directive-name%.scss
| | | | | |- %directive-name%.spec.js
| | | | | |- %directive-name%.html
| | | | |- ..
| | | |- filters/
| | | | |- ..
| | | |- services/
| | | | |- ..
| |- vendor/
| | |- %vendor-name%/
| | | |- %vendor-file%
| | | |- ..
| | |- ..
|- server/
| |- configs/
| | |- env.local.js
| | |- vendor.js
| | |- server.dev.js
| | |- server.prod.js
| | |- ...
| |- controllers/
| | |- %controller-name%.js
| | |- ...
| |- models/
| | |- %model-name%.js
| | |- ...
| |- modules/
| | |- %module-name%.js
| | |- ...
| |- mongos/
| | |- %mongo-name%.js
| | |- ...
| |- services/
| | |- %service-name%.js
| | |- ...
|- index.js
```
### Examples
Sample app (cool chat): [https://github.com/ztrue/faf-sample-app](https://github.com/ztrue/faf-sample-app)