Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnhof/mean-example
https://github.com/johnhof/mean-example
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/johnhof/mean-example
- Owner: johnhof
- Created: 2015-03-06T08:25:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-15T23:05:54.000Z (over 9 years ago)
- Last Synced: 2024-10-05T01:41:09.291Z (about 1 month ago)
- Language: JavaScript
- Size: 211 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
MEAN Example
============[Written from scratch for this MEAN guide](https://johnhofrichter.wordpress.com/2015/03/15/building-a-mean-stack-from-the-ground-up/)
```bash
├── api
│ ├── components // endpoint and model scripts
│ │ └── example
│ │ ├── example
│ │ │ └── example_ctrl.js // Controller
│ │ ├── example_ctrl.js // Controller
│ │ └── example_model.js // Model
│ ├── lib
│ │ └── error.js // express error handler
│ └── routes.js // API routing
├── app
│ ├── assets
│ │ ├── directives
│ │ │ └── example_directive
│ │ │ ├── example_directive.html // Template
│ │ │ ├── example_directive.js // Definition
│ │ │ └── example_directive.scss // Styling
│ │ ├── images
│ │ ├── services
│ │ └── styles
│ │ ├── main.scss // Universal Styling
│ │ └── variables.scss // Variables for consistency
│ ├── components
│ │ └── example
│ │ ├── example.html // View
│ │ ├── example.js // Controller
│ │ └── example.scss // Styling
│ └── core
│ ├── app.js // Angular app init
│ ├── index.html // Template which wraps views
│ └── router.js // Clientside angular routing
├── test // Mocha tests
├── bower.json // App dependencies
├── config.json // Server configuration
├── Gruntfile.js // Task runner
├── package.json // API dependencies
└── server.js // sets up API, delivers App
```