2.0.0-next.141 • Published 2 years ago

@deboxsoft/create-svelte v2.0.0-next.141

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

create-svelte

A CLI for creating new SvelteKit projects. Just run...

npm init svelte

...and follow the prompts.

API

You can also use create-svelte programmatically:

import { create } from 'create-svelte';

await create('my-new-app', {
  name: 'my-new-app',
  template: 'default', // or 'skeleton'
  types: 'checkjs', // or 'typescript' or null;
  prettier: false,
  eslint: false,
  playwright: false
});

checkjs means your project will use TypeScript to typecheck JavaScript via JSDoc comments.

License

MIT.