An open API service indexing awesome lists of open source software.

https://github.com/ztrue/fast-and-furious


https://github.com/ztrue/fast-and-furious

Last synced: about 1 year ago
JSON representation

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)