Roosevelt is a web application development framework based on Express. Roosevelt abstracts all the crusty boilerplate necessary to build a typical Express app and provides a uniform MVC structure for your app.
Named for the most badass President of all-time whose facial hair just so happens to look like a curly brace, Roosevelt's main goal is to be the easiest JS-based web framework to learn and use by setting sane defaults while also providing easy ways to override the defaults and tap into the full potential of Express.
By default Roosevelt integrates Teddy for HTML templating, LESS for CSS preprocessing, and Closure Compiler for JS minification. But you can use other templating systems, CSS preprocessors, or JS minifiers if you like, as Roosevelt is easy to configure.
- Why use Roosevelt
- Create and run a Roosevelt app
- Default directory structure
- Configure your app with parameters
- Making controller files
- Making model files
- Making view files
- Express variables exposed by Roosevelt
- Express middleware and other configurations automatically provided by Roosevelt
- Warning: Roosevelt is beta software!
- Contributing to Roosevelt
- License
Roosevelt is easy to use and has a low learning curve, unlike many other popular JS-based web frameworks.
Reasons for this include:
- Minimal boilerplate to get started. All the magic of Express is preconfigured for you.
- Default directory structure is simple, but easily configured.
- Concise MVC architecture.
- Teddy HTML templates are much easier to read and maintain than popular alternatives.
- LESS and Closure Compiler preconfigured out of the box to intelligently minify your external facing CSS and JS files.
First you will need to install Node.js or io.js. Then you might need to install some other stuff depending on what operating system you're running.
Windows:
- Install python 2.7.6 (not 3.x, that doesn't work). Download that here.
- Add python to your PATH. Instructions for that are here.
- Install Visual Studio (payware) or Visual Studio Express for Windows Desktop (registerware): Download that here.
Mac:
- Install Xcode.
Ubuntu:
- Install build-essential:
sudo apt-get install build-essential
- You may also need to
sudo apt-get remove gyp
if you already have gyp installed. Ubuntu's gyp is incompatible with common JS modules.
If you intend to use Roosevelt's default JS minifier (Closure Compiler), then you should also make sure to install the Java JRE as well. If you don't, then Roosevelt will install it as a dependency of your app which will bloat the size of your app by several tens of megabytes.
Once you have a sane developmemt environment, you can proceed with the standard install procedure below.
First install the command line tool globally (may require admin or root privileges):
npm install -g mkroosevelt
Use the command line tool to create a sample app:
mkroosevelt myapp
Inside your new myapp
folder you'll find a bin
directory with the following files:
mac.command
unix.sh
windows.bat
Open the one relevant to whichever operating system you're running. That will install all the dependencies and start your new app!
If you want to do that manually instead using the console, then change into your new app's directory and then install dependencies:
cd myapp
npm install
Then run your app:
node app.js
Run your app in production mode:
export NODE_ENV=production && node app.js
Run your app on two CPUs:
node app.js -cores 2
Run your app on all your CPUs:
node app.js -cores max
While developing your app, a more convenient way to run the app is to use the npm start
script.
The npm start
script will run your app through nodemon and will automatically restart whenever you modify any JS, JSON, LESS, or HTML files.
Make sure you install nodemon first via npm install -g nodemon
(may require admin or root privileges) and then simply execute this command:
npm start
app.js
: main app file. Feel free to rename this, but make sure to update package.json's reference to it.bin
: folder with operating system-specfic executables for your app.mac.command
: open this in Mac OS X to start your app graphically.unix.sh
: open this in UNIX-like environments like Ubuntu or other Linux distros to start your app graphically.windows.bat
: open this in Windows to start your app graphically.
mvc
: folder for models, views, and controllers.controllers
: folder for controller files.models
: folder for model files.views
: folder for view files.
lib
: Optional folder for any modules, utility libraries, or other dependencies your app may require which aren't in npm, symlinked to node_modules.node_modules
: a standard folder where all modules your app depends on (such as Roosevelt) are installed to. This folder is created by thenpm install
command.models
: symlink tomvc/models
so you canrequire('models/yourModel')
anywhere in your code without specifying a relative path. Roosevelt will create this symlink for you.lib
: symlink tolib
so you canrequire('lib/yourLib')
anywhere in your code without using a relative path. If thelib
folder is present, Roosevelt will create this symlink.
package.json
: a standard file for configuring your app.public
: all contents within this folder will be exposed as static files.statics
: folder for CSS, images, JS files, and other statics. Some of the contents of this folder are symlinked to from public, which you can configure (see below).css
: folder for CSS files.images
: folder for image files.js
: folder for JS files.
.gitignore
: a standard file which contains a list of files and folders to ignore if your project is in a git repo.
The default .gitignore
file contains many common important things to ignore, however you may need to tweak it to your liking before using a fresh Roosevelt app in your git repo.
Some notable things ignored by default and why:
public
: It's recommended that you don't create files in this folder manually, but instead use thesymlinksToStatics
feature detailed below to expose folders in yourstatics
directory via auto-generated symlinks..build
: By default Roosevelt will compile LESS and JS files down to minified versions instatics/.build
when the server starts. As such, it's not recommended to place files in the build directory manually.node_modules
: This folder will be auto-generated when you run thenpm install
step to set up your app. Since some modules you might include later in your app can be platform-specific and are compiled for your OS during the install step, it's generally not recommended to commit thenode_modules
folder to git.
Roosevelt is designed to have a minimal amount of boilerplate so you can focus on just writing your app. All parameters are optional. As such, by default, all that's in app.js is this:
require('roosevelt')().startServer();
Roosevelt will determine your app's name by examining "name"
in package.json
. If none is provided, it will use Roosevelt Express
instead.
Inside app.js
, you can pass any of the below optional parameters to Roosevelt via its constructor like so:
require('roosevelt')({
paramName: 'paramValue',
param2: 'value2',
etc: 'etc'
}).startServer();
Each param can also be defined in package.json
under "rooseveltConfig"
.
port
: The port your app will run on. Can also be defined usingHTTP_PORT
orNODE_PORT
environment variable.- Default:
43711
- Default:
localhostOnly
: Listen only to requests coming from localhost in production mode. This is useful in environments where it is expected that HTTP requests to your app will be proxied through a more traditional web server like Apache or nginx. This setting is ignored in development mode.- Default:
true
- Default:
disableLogger
: When this option is set to true, Roosevelt will not log HTTP requests to the console.- Default:
false
- Default:
noMinify
: Disables the minification step in (supporting) CSS and JS compilers. Useful during dev mode. Can also be passed as the command line argument-no-minify
.- Default:
false
- Default:
multipart
: Settings to pass along to formidable using formidable's API for multipart form processing. Access files uploaded in your controllers by examining thereq.files
object. Roosevelt will remove any files uploaded to theuploadDir
when the request ends automatically. To keep any, be sure to move them before the request ends. To disable multipart forms entirely, set this option to false.- Default:
{'multiples': true}
- Default:
(Temporarily disabled)maxLagPerRequest
: Maximum amount of time in miliseconds a given request is allowed to take before being interrupted with a 503 error. (See node-toobusy)- Default:
2000
(2 seconds)
- Default:
shutdownTimeout
: Maximum amount of time in miliseconds given to Roosevelt to gracefully shut itself down when sent the kill signal.- Default:
30000
(30 seconds)
- Default:
https
: Run an HTTPS server using Roosevelt.- Default:
false
- Default:
httpsOnly
: If running an HTTPS server, determines whether or not the default HTTP server will be disabled- Default:
false
- Default:
httpsPort
: The port your app will run a HTTPS server on, if enabled. Can also be defined usingHTTPS_PORT
environment variable.- Default:
43733
- Default:
pfx
: Specify whether or not your app will use pfx or standard certification.- Default:
false
- Default:
keyPath
: Stores the file paths of specific key/certificate to be used by the server.- Object values:
pfx
,key
,cert
-- use one of {pfx
} or {key
,cert
} - Default:
null
- Object values:
passphrase
: Supply the HTTPS server with the password for the certificate being used, if necessary.- Default:
null
- Default:
ca
: Certificate authority to match client certificates against, as a file path or array of file paths.- Default:
null
- Default:
requestCert
: Request a certificate from a client and attempt to verify it.- Default:
false
- Default:
rejectUnauthorized
: Upon failing to authorize a user with supplied CA(s), reject their connection entirely.- Default:
false
- Default:
bodyParserOptions
: Controls the options for body-parser using a object.- Default:
{extended: true}
- Default:
bodyParserJsonOptions
: Controls the options for the json function of the body-parser using a object.- Default:
{}
- Default:
modelsPath
: Relative path on filesystem to where your model files are located.- Default:
mvc/models
- Default:
modelsNodeModulesSymlink
: Name of the symlink to make innode_modules
pointing to your models directory. Set tofalse
to disable making this symlink.- Default:
models
- Default:
viewsPath
: Relative path on filesystem to where your view files are located.- Default:
mvc/views
- Default:
viewEngine
: What templating engine to use, formatted as'fileExtension: nodeModule'
. Supply an array of engines to use in that format in order to make use of multiple templating engines. Each engine you use must also be marked as a dependency in your app's package.json. Whichever engine you supply first with this parameter will be considered the default. Set tonone
to use no templating engine.- Default:
html: teddy
- Also by default the module teddy is marked as a dependency in package.json.
- Default:
controllersPath
: Relative path on filesystem to where your controller files are located.- Default:
mvc/controllers
- Default:
libPath
: Relative path on filesystem to where your optional utility library files are located. Defaults tolib
if not set.libPathNodeModulesSymlink
: Name of the symlink to make innode_modules
pointing to yourlib
directory. Set tofalse
to disable making this symlink. Defaults tolib
if not set.
error404
: Relative path on filesystem to where your "404 Not Found" controller is located. If you do not supply one, Roosevelt will use its default 404 controller instead.- Default:
404.js
- Default:
error5xx
: Relative path on filesystem to where your "Internal Server Error" controller is located. If you do not supply one, Roosevelt will use its default controller instead.- Default:
5xx.jx
- Default:
error503
: Relative path on filesystem to where your "503 Service Unavailable" controller is located. If you do not supply one, Roosevelt will use its default 503 controller instead.- Default:
503.js
- Default:
staticsRoot
: Relative path on filesystem to where your static assets are located. By default this folder will not be made public, but is instead meant to store unprocessed or uncompressed source assets.- Default:
statics
- Default:
cssPath
: Subdirectory withinstaticsRoot
where your CSS files are located. By default this folder will not be made public, but is instead meant to store unminified CSS source files which will be minified and stored elsewhere when the app is started.- Default:
css
- Default:
cssCompiler
: Which CSS preprocessor, if any, to use. Must also be marked as a dependency in your app's package.json. Set tonone
to use no CSS preprocessor.- Default:
{nodeModule: 'roosevelt-less', params: {compress: true}}
. - Also by default the module roosevelt-less is marked as a dependency in package.json.
- Default:
cssCompilerWhitelist
: Whitelist of CSS files to compile as an array. Leave undefined to compile all files.- Default:
undefined
- Default:
cssCompiledOutput
: Where to place compiled CSS files. This folder will be made public by default.- Default:
.build/css
- Default:
jsPath
: Subdirectory withinstaticsRoot
where your JS files are located. By default this folder will not be made public, but is instead meant to store unminified JS source files which will be minified and stored elsewhere when the app is started.- Default:
js
- Default:
jsCompiler
: Which JS minifier, if any, to use. Must also be marked as a dependency in your app's package.json. Set tonone
to use no JS minifier.- Default:
{nodeModule: 'roosevelt-closure', params: {compilation_level: 'ADVANCED_OPTIMIZATIONS'}}
. - Also by default the module roosevelt-closure is marked as a dependency in package.json.
- Default:
jsCompilerWhitelist
: Whitelist of JS files to compile as an array. Leave undefined to compile all files. Supply a:
character after each file name to delimit an alternate file path and/or file name for the minified file.- Default:
undefined
- Example:
library-name/example.js:lib/example.min.js
(customizes both file path and file name of minified file)
- Default:
jsCompiledOutput
: Where to place compiled JS files. This folder will be made public by default.- Default:
.build/js
- Default:
publicFolder
: All files and folders specified in this path will be exposed as static files.- Default:
public
- Default:
favicon
: Location of your favicon file.- Default:
images/favicon.ico
- Default:
symlinksToStatics
: Array of folders fromstaticsRoot
to make symlinks to in your public folder, formatted as either'linkName: linkTarget'
or simply'linkName'
if the link target has the same name as the desired link name.- Default:
['css: .build/css', 'images', 'js: .build/js']
(whitespace optional)
- Default:
versionedStatics
: If set to true, Roosevelt will prepend your app's version number from package.json to your statics URLs. Versioning your statics is useful for resetting your users' browser cache when you release a new version.- Default:
false
- Default:
versionedCssFile
: If enabled, Roosevelt will create a CSS file which declares a CSS variable exposing your app's version number from package.json. Enable this option by supplying an object with the member variablesfileName
andvarName
.- Default:
undefined
. - Example usage:
{fileName: 'version.less', varName: 'appVersion'}
.
- Default:
alwaysHostPublic
: By default in production mode Roosevelt will not expose the public folder. It's recommended instead that you host the public folder yourself directly through another web server, such as Apache or nginx. However, if you wish to override this behavior and have Roosevelt host your public folder even in production mode, then set this setting to true.- Default:
false
- Default:
Roosevelt also provides a series of events you can attach code to by passing a function to the desired event as a parameter to Roosevelt's constructor like so:
require('roosevelt')({
onServerStart: function(app) { /* do something */ }
});
onServerInit(app)
: Fired when the server begins starting, prior to any actions taken by Roosevelt.app
: The Express app created by Roosevelt.
onServerStart(app)
: Fired when the server starts.app
: The Express app created by Roosevelt.
onReqStart(req, res, next)
: Fired at the beginning of each new request.req
: The request object created by Express.res
: The response object created by Express.next
: Callback to continue with the request. Must be called to continue the request.
onReqBeforeRoute(req, res, next)
: Fired just before executing the controller.req
: The request object created by Express.res
: The response object created by Express.next
: Callback to continue with the request. Must be called to continue the request.
onReqAfterRoute(req, res)
: Fired after the request ends.req
: The request object created by Express.res
: The response object created by Express.
Controller files are just standard Express routes. A route is the term Express uses for URL endpoints, such as http://yoursite/blog
or http://yoursite/about
.
To make a new controller, just make a new file in the controllers directory. For example:
module.exports = function(app) { // app is the Express app created by Roosevelt
// standard Express route
app.route('/about').get(function(req, res) {
// load a data model
var model = require('models/dataModel');
// render a Teddy template and pass it the model
res.render('about', model);
});
};
Since the above example requires a model file named dataModel
, you will need to make that too. To do that, place a file named dataModel.js
in mvc/models
.
Here's a simple example dataModel.js
data model:
module.exports = {some: 'data'};
Views are Teddy templates. See the Teddy documentation for information about how to author Teddy templates.
You can also use different templating engines by tweaking Roosevelt's parameters (see above parameter documentation).
Roosevelt supplies several variables to Express that you may find handy. Access them using app.get('variableName')
.
Express variable | Description |
---|---|
express |
The express module. |
viewEngine e.g. teddy by default |
Any view engine(s) you define will be exposed as an Express variable. For instance, the default view engine is teddy. So by default app.get('teddy') will return the teddy module. |
formidable |
The formidable module. Used for handling multipart forms. |
appName |
The name of your app derived from package.json . Uses "Roosevelt Express" if no name is supplied. |
appVersion |
The version number of your app derived from package.json . |
appDir |
The directory the main module is in. |
package |
The contents of package.json . |
staticsRoot |
Full path on the file system to where your app's statics folder is located. |
publicFolder |
Full path on the file system to where your app's public folder is located. |
cssPath |
Full path on the file system to where your app's CSS source files are located. |
jsPath |
Full path on the file system to where your app's JS source files are located. |
cssCompiledOutput |
Full path on the file system to where your app's minified CSS files are located. |
jsCompiledOutput |
Full path on the file system to where your app's minified JS files are located. |
modelsPath |
Full path on the file system to where your app's models folder is located. |
viewsPath |
Full path on the file system to where your app's views folder is located. |
controllersPath |
Full path on the file system to where your app's controllers folder is located. |
params |
The params you sent to Roosevelt. |
port |
Port Roosevelt is running on. |
Additionally the Roosevelt constructor returns the following object:
Roosevelt object | Description |
---|---|
expressApp |
The Express app created by Roosevelt. |
httpServer |
The http server created by Roosevelt. httpServer is also available as a direct child of app , e.g. app.httpServer . |
startServer |
Calls http.listen() to start the web server with Roosevelt's config. |
In addition to exposing a number of variables to Express and providing the MVC interface outlined above, Roosevelt also:
- Includes the compression middleware.
- Includes the cookie-parser middleware.
- Disables
x-powered-by
andetag
. - Logs HTTP requests to the console using morgan, specifically
morgan('combined')
. - Includes the body-parser middleware with
bodyParser.json
andbodyParser.urlencoded({extended: true})
. - Includes the method-override middleware.
Not many apps have been written using Roosevelt yet, so it's entirely possible that there will be some significant bugs.
You should not use Roosevelt in production yet unless you're willing to devote some time to fixing any bugs you might find.
To contribute back to Roosevelt, fork this repo and clone it to your computer.
To run the unit tests on your code changes, run this command:
npm test
If you want to hack on the CLI tool, see mkroosevelt.
There is plenty of opportunity to help improve Roosevelt if you're interested in lending a hand. If you'd like to help, take a look at the open issues and submit a pull request!