Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
grand-central-express
Advanced tools
A modular Express framework for Node. Integrates the following libraries and features:
Make GCE ORM agnostic (able to use GCR, sequelize, JugglingDB)
Create 'mincer' branch to replace GCP (both?)
Testing for command-line interface
Testing for Express integration
Use glob for getting Models
When creating new app, don't overwrite package.json (extend it with required extras)
Use layouts in views/EJS rendering <%= yield %> (use mincer)
gce new APP_NAME
Generates new app scaffolding.
# Make sure you're in the project folder already
$ mkdir project
$ cd project
$ gce new project
gce server | s | start | run
Starts Express server on port 3000. Use the -p option to change ports, and the -e option to change environments.
$ gce server
Grand Central Express server listening on port 3000
gce generate controller NAME [action action]
Generates a controller and associated routes with provided actions.
$ gce generate controller Company about team contact
create controller/company.js
gce generate model NAME [field:type field:type]
Generates a model with provided attributes.
$ gce generate model book title:string author:string
create models/Book.js
gce generate scaffold NAME [field:type field:type]
Generates a model with provided attributes and a RESTful JSON controller. Also generates client-side Backbone model & collection. The actions currently don't include update or destroy. These are coming once the custom ORM is built.
Pass -c to avoid creating Backbone scaffold.
$ gce generate scaffold animal name:string species:string -c
create models/Animal.js
create controllers/animal.js
update routes
gce [backbone | bb] [scaffold | model] NAME [field:type field:type]
Generates Backbone model and collection for given name and fields.
$ gce bb scaffold animal name:string species:string
create client/models/Animal.js
create client/collections/animalList.js
gce [backbone | bb] view NAME
Generates Backbone view.
$ gce bb view item
create client/views/itemView.js
gce migrate
[Not currently functional] Migrates and syncs your model schemas to the database. Use the -e option to change database environments.
gce version | v | -v
Gets your version of Grand Central Express.
See Grand Central Junction. Default routes file is /config/routes.js
, default controllers path is /controllers
.
Defined in the /models
folder, with capitalized names like Person.js
. The model is defined like so:
var Model = require('grand-central-express').Model;
module.exports = new Model({
name: "Person",
schema: {
name: String,
email: String,
admin: Boolean,
rank: Number
}
});
Methods, validations and relationships are still in development.
The default ORM is Grand Central Records, but can be quickly changed to JugglingDB or Node-ORM using the following steps:
package.json
from 'grand-central-records'
to either 'jugglingdb'
or 'orm'
app.js
, change...Models are accessed in controllers:
exports.show = function(req, res, models) {
var id = req.param('id');
models.Person.find(id, function(err, person) {
if (err) throw err;
res.json(person);
});
};
Database connections are defined in config/db.json
. For whatever database you use, make sure to include the package (mysql, pg, sqlite3) in your dependencies.
{
"development": {
"adapter": "sqlite3",
"host": "",
"database": "db/development.sqlite3",
"username": "",
"password": ""
}
}
The template defaults to using SQLite3 files for both development and production.
FAQs
(DEPRECIATED) A Rails-inspired Express framework for Node
We found that grand-central-express demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.