mirror of
https://github.com/linnovate/mean.git
synced 2026-02-01 16:46:12 +00:00
Page:
fs packages
Pages
0.4.1
Adding External Dependencies
AssetsManager
Auth With JSON Web Tokens (JWT)
Backlog
Built with Mean
CLI
Circles Examples
Circles
Common Development Patterns
Community Resources
Contrib packages
Custom packages
Custom theming
Customize Your Project
Database core module
Deploy to AWS
Deploy to Azure
Deploying on Openshift
Deploying on Heroku
External links
Faq
File Structure
Home
Hosting MEAN
Installation
Installing prerequisites on ubuntu 12.04 lts
MEAN2 getting started
Making Client side Tests
Making End to End Tests
Making Server side Tests
Mean components diagram
Meeting Notes (23.12.2014)
Meeting Notes (6.1.2015)
Meeting Notes (14.1.2015)
Meetings
Mission Statement
Modular Architecture work
Network
On frameworks
Overview
Package testing matrix
Packages Overview
Packages
RC1.0 CR Brock McKean
RC1.0 Code Reviews
RC1.0 Core Packages
RC1.0 Database
RC1.0 Dependency Injection
RC1.0 Deployment
RC1.0 Errors
RC1.0 Roadmap & Milestone Suggestions
RC1.0 Tests
README.md
Revamp of users package
Roadmap 29.12.2014
Roadmap
SUMMARY.md
Structure
Support channels
Support
Testing
Ubuntu init script
Windows FAQ
[REMOVED] Aggregation core module
core
fs config
fs files
fs packages
i18n Internationalisation
mean one cli
mean one meanio
mean one registry
mean one
navigation
table test
Clone
7
fs packages
liorkesos edited this page 2014-10-31 00:59:24 -07:00
Overview
The way mean can provide fullstack functionality within a single package is by providing server and client (public) functionality within each one of the packages we use in a system
Files
/ app.js # main package manifest
/ README.md # Package (markdown rendered) README file
/ package.json # node dependencies for package
/ bower.json # client side dependencies for package
Server
/ server
/ config # Configuration Files (see below)
/ controllers # Server side logic goes here
/ models # schema models goes here
/ routes # rest api endpoints routing - here
/ views # swig based html rendering - here
Client
/ public
/ config # Configuration Files (see below)
/ controllers # Client side logic goes here
/ routes # Angular routes defined here
/ views # Angular views files found here
/ services # Angular services files found here
/ directives # Angular directives files found here
- Getting Started Guides
- Deployment
- Testing
- System Deep Dives
Aggregation- Packages
- Database
- Menus
- Circles (roles/permissions) High Level Overview
- Circles code examples
- User Auth withJWT
- Contributing