templr-js
v1.0.3
Published
templr-js is a local-first template scaffolding CLI. Save any project structure as a reusable template, spin it up instantly in any new folder, and manage all your templates from the terminal — no config, no cloud, just your machine.
Maintainers
Readme
templr-js
templr-js is a local-first template scaffolding CLI. Save any project structure as a reusable template, spin it up instantly in any new folder, and manage all your templates from the terminal — no config, no cloud, just your machine
Install
npm install -g templr-jsUsage
Save a template
Navigate to your project and run:
templr save <name>Use a template
Navigate to a new empty folder and run:
templr use <name>List all templates
templr listDelete a template
templr delete <name>Example
# save your perfect backend setup
cd my-backend-project
templr save backend
# start a new project with that template
mkdir new-project
cd new-project
templr use backendNotes
- Templates are stored locally on your machine at
~/.db-template/ node_modulesand.gitare never copied- Works on Mac, Windows, and Linux
