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:
server
will start up thewatch
task, then start up BrowserSync on the destination path.server:prod
is the same asserver
withoptions.environment
set to'production'
for a production build.info:server
will display information on what this specific module does, specifically the port number the local server is started at. This task is also added to theinfo
task.
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.