projidy
v1.0.2
Published
<!-- markdownlint-disable-next-line --> <div align="center">
Downloads
0
Readme
Command line utility for managing templates.
Introduction
Projidy allows for fast prototyping by using templates from GitHub.
Installation
yarn global add projidy
npm install -g projidy
Usage
projidy new <template> <destination>
Create a new project using the specified template:
The template is specified using the <owner>/<repository>(@<branch-or-release>)
Example:
projidy new sveltejs/template
projidy new fausttobias/svelte-template@typescript-tailwind
projidy alias list
List all configured aliases.
projidy alias add <name> <template>
Add an alias to a template.
Example:
projidy alias add svelte-pwa fausttobias/svelte-template@typescript-tailwind
# You can now use the template using its alias name:
projidy new svelte-pwa my-new-project
projidy alias remove <name>
Remove an existing alias.