Preconfigured Starter templates for different frameworks, languages, and configurations
npx @nabeelvalley/project-init
And then select a template and a name for your project. The CLI will then initialize a template with your file contents in the selected directory
The ts-static
template is a Typescript template for a static site using:
typescript
as the language andtsc --watch
to scan for errorsparcel
to compile the application and run the development serverconcurrently
to run the dev server and error watch at the same time- A
.prettierrc
config file for formatting with Prettier
The ts-node
template is a Typescript template for Node.js applications using:
typescript
as the language and the Typescript compiler to compile- Includes a
.vscode/launch.json
for debugging - A
.prettierrc
config file for formatting with Prettier
The gatsby-mdx-tailwind
template is a Javascript Gatsby template using:
mdx
for page generationtailwindcss
for stylingframer motion
is installed for animations, but the template does not use it- A
.prettierrc
config file for formatting with Prettier