Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Current »

Content Freeze

As of July 25th, 2023, there is a content freeze on this page.

Exposes the Express server express object, allowing you to call various Express API to customize the web server. This is typically used in the start.js file to setup custom routes, etc.

Please Note

The profoundjs.server.express object is not exposed until the profoundjs.server.listen()  API has been called.

Example

Serve static path
var app = profoundjs.server.app;
var express = profoundjs.server.express;
 
app.get('/angular', app.use(express.static('../angular')));
  • No labels