0.0.8 • Published 5 years ago

create-svelte-site v0.0.8

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

Create Svelte Site oclif Version Downloads/week License

Create a Svelte or Sapper site in a single command.

create-svelte-site gif

Usage

Creating a Site

You’ll need to have Node 8.10.0 or later on your local development machine (but it’s not required on the server). You can use nvm (macOS/Linux) or nvm-windows to easily switch Node versions between different projects.

With npx

  npx create-svelte-site my-site

With npm

  npm init svelte-site my-site

With yarn

  yarn create svelte-site my-site

Note: We are using my-site as an example. This can be any project name you choose.

You will be prompted to select a template from the official Svelte template library.

create-svelte-site prompt

After you make your selection, your new site will be created in a directory named my-site inside the current folder.

Next steps:

Navigate to the newly created directory.

cd my-site

Install the dependencies

npm install

or

yarn

Then, start up the development server.

npm run dev

Your site will be available at http://localhost:5000.

Note: npm run dev does not apply to the Svelte (component) project type.

Commands

Here is a full list of the options and the corresponding templates that are executed.

Under the hood, this library is using nodegit to generate your new project using official Svelte and community templates.

CommandTemplate
Svelte (rollup)svelte/template
Svelte (webpack)svelte/template-webpack
Svelte (component)svelte/component-template
Svelte (custom element)gojutin/svelte-custom-element
Sapper (rollup)sveltejs/sapper-template#rollup
Sapper (webpack)sveltejs/sapper-template#webpack

Useful Resources

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago