Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/czioutas/expressnode
A Simpler seutp for MEAN applications with customisable NoSQL storage
https://github.com/czioutas/expressnode
Last synced: 5 days ago
JSON representation
A Simpler seutp for MEAN applications with customisable NoSQL storage
- Host: GitHub
- URL: https://github.com/czioutas/expressnode
- Owner: czioutas
- Created: 2015-05-28T10:07:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-28T11:21:14.000Z (over 9 years ago)
- Last Synced: 2023-02-28T12:17:11.530Z (almost 2 years ago)
- Language: JavaScript
- Size: 641 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# expressnode
A Simpler seutp for MEAN applications with customisable NoSQL storageStructure:
- server.js // Main Execution file with configurations and module dependecies
- routes.js // The redirection router
- Views // Contains all the .ejs/.html pages you want to include
- Public
- CSS
- fonts
- Images
- javascript
- node_modules // folder created by npm install for modules that are required for the application
- Config // Anything that has to do with your configuration settings, Environment settings, development etc
- database.js // database connection strings
- variables.js // global setup settings PORTs etc
- App
- Models // The Schema structure of the NoSQL Models
- modules // Essentially all your custom modules that you will need to create
- connectors // Example module for handling connection access to DB
Modules
- body-parser: https://github.com/expressjs/body-parser
- connect-flash: https://github.com/jaredhanson/connect-flash
- cookie-parser: https://github.com/expressjs/cookie-parser
- ejs: https://github.com/tj/ejs
- errorhandler: https://github.com/expressjs/errorhandler
- express: http://expressjs.com/
- express-session:https://github.com/expressjs/session
- method-override:https://github.com/expressjs/method-override
- mongoose: https://github.com/Automattic/mongoose
- morgan: https://github.com/expressjs/morgan
- multer: https://github.com/expressjs/multer
- serve-favicon: https://github.com/expressjs/serve-favicon