I'm almost ashamed to ask this, but where can I find information about the settings for express.js? According to the documentation I can use app.set(name, setting) to assign setting name to setting, however I can't find anywhere which settings there are and how they work.
You can find it here:
http://expressjs.com/api.html#app-settings
settings
The following settings are provided to alter how Express will behave:
envEnvironment mode, defaults to process.env.NODE_ENV or "development"trust proxyEnables reverse proxy support, disabled by defaultjsonp callback nameChanges the default callback name of ?callback=json replacerJSON replacer callback, null by defaultjson spacesJSON response spaces for formatting, defaults to 2 in development, 0 in productioncase sensitive routingEnable case sensitivity, disabled by default, treating "/Foo" and "/foo" as the samestrict routingEnable strict routing, by default "/foo" and "/foo/" are treated the same by the routerview cacheEnables view template compilation caching, enabled in production by defaultview engineThe default engine extension to use when omittedviewsThe view directory path