rump-server v0.8.0
Rump Server
Status
Master
Develop
About
Rump Server is a Rump module that starts up a local server that serves built assets using pushserve. For more information, visit the core repository.
API
The following is appended to the core Rump API:
rump.addGulpTasks(options)
This module adds the following tasks:
serverwill start up thewatchtask, then start up BrowserSync on the destination path.server:prodis the same asserverwithoptions.environmentset to'production'for a production build.info:serverwill display information on what this specific module does, specifically the port number the local server is started at. This task is also added to theinfotask.
rump.configure(options)
Redefine options for Rump and Rump modules to follow. In addition to what options Rump and other Rump modules offer, the following options are available alongside default values:
options.server.port (process.env.PORT or 3000)
This specifies which port to run pushserve under.
options.server.pushState (false)
This specifies whether to support assistance with HTML5 history API by serving
index.html on requests that don't have a file location.
options.server.pushserve
This specifies any options you want to override in pushserve. Visit the project page for specific options available.
rump.configs.pushserve
This contains the generated options that are passed to pushserve in the Gulp task. This is a good way to see what options are generated based on defaults and overrides.