
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Jumpstart creates new projects from templates with placeholders.
You probably want to install jumpstart globally, so you can run it from anywhere. To get a sense of what jumpstart can do, you should install a template module as well. Currently, Jumpstart Black Coffee is the only one publicly available, so that makes it easy to choose.
npm install jumpstart -g
npm install jumpstart-black-coffee -g
Jumpstart searches for a .jumpstart.json file within
Currently Jumpstart solely looks for a globals property inside the JSON data. If you specificy values for placeholders here, Jumpstart will use them to fill out the template, without asking you for it.
Placeholder names conform to the following pattern: [a-z]+(-[a-z]+)*, i.e. lowercase words separated with a dash (-).
Jumpstart will work without a configuration file, but it will be much less convenient to use.
Below is the .jumpstart.json file that I currently use for my open source projects. It defines values for most of the placeholders inside my Jumpstart Black Coffee template.
{
"globals": {
"author-name": "Braveg1rl",
"author-email": "braveg1rl@outlook.com",
"github-username": "braveg1rl",
"github-ownername": "braveg1rl",
"github-repos-path": "/user/repos",
"module-is-private": "false",
"node-version": "0.10.x",
"npm-version": "1.2.x",
"commit-message": "jumpstart commit."
}
}
module-is-privateThis property is set to the string "false". This is because Jumpstart does not know about booleans. Because of how the Jumpstart Black Coffee template is structured, setting this property to anything else than "true" or "false" would reduce in invalid JSON in the generated project.
Typically, you run jumpstart from your 'Work' directory (i.e. the directory that holds your project directories).
jumpstart [dirname] [template-name]
Jumpstart will search for a jumpstart template module within
Jumpstart will read all files inside the jumpstart template and look for placeholders. Jumpstart will then ask for values of any placeholders it doesn't know a value for (either built-in or provided through a .jumpstart.json config file).
After getting values for all variables, Jumpstart creates the target directory, copies the contents of the template directory into the target directory and replaces the placeholders with their provided values. As a precaution, Jumpstart won't write to a directory that already exists.
At the moment the program's output is quite verbose, which helps with debugging, as well as understanding what's going on.
A jumpstart template module is a directory which name starts with jumpstart- followed by the module name. A jumpstart template module should contain a template directory which holds the actual template (freeing up the module root for metadata).
The files inside the template directory serve as templates for the files in the target directory. The template files are copied verbatim to the target directory, with the following exceptions:
A placeholder string is a variable name with three dashes added on both sides. Examples of placeholders:
---name------author-email------some-important-setting---Placeholders can be placed anywhere, both inside and outside of what are considered strings in a particular language. This means the template files themselves may not be valid.
To allow easy distribution of templates through npm, and to prevent any conflicts in what you want the template to be compared with how you want to edit it, jumpstart templates use special names for the following files:
package.json -- package.jumpstart.json.tm_properties -- tm_properties.jumpstart.gitignore -- gitignore.jumpstart.npmignore -- npmignore.jumpstartAfter copying all files to the target directory and applying values to placeholders.
jumpstart:
curl -u '---github-username---' https://api.github.com---github-repos-path--- -d '{"name":"---module-name---", "description":"---module-description---","private":---module-is-private---}'
touch src/---module-name---.coffee
git init
git remote add origin git@github.com:---github-ownername---/---module-name---
git add *
git commit -m "---commit-message---"
git push -u origin master
The easiest way to use your own template is to place it in your Work directory with the name jumpstart-yourtemplate. In your Work directory, you can then do jumpstart yournewproject yourtemplate.
The structure of a template module allows it to be published verbatim with npm. The module name (i.e. in package.json) must start with jumpstart-.
Jumpstart is released under the MIT License.
Copyright (c) 2017 Braveg1rl
FAQs
Creates projects from templates with placeholders.
The npm package jumpstart receives a total of 3 weekly downloads. As such, jumpstart popularity was classified as not popular.
We found that jumpstart demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.