This API starts a Profound.js server instance.
Parameters
- Port (optional) - The port number to listen on; if not specified, the Profound.js configuration is used
- Host (optional) - The host name Profound.js will accept connections on; if not specified, the Profound.js configuration is used
ExampleExamples
Code Block | ||
---|---|---|
| ||
profoundjs.server.listen(8099); // listen on port 8099 profoundjs.server.listen(); // listen on the port specified in the Profound.js configuration file |