No Description

d0c 0caae69227 sample table 2 weeks ago
src 0caae69227 sample table 2 weeks ago
static d274eed55b first commit 3 weeks ago
.eslintignore d274eed55b first commit 3 weeks ago
.eslintrc.cjs d274eed55b first commit 3 weeks ago
.gitignore d274eed55b first commit 3 weeks ago
.npmrc d274eed55b first commit 3 weeks ago
.prettierignore d274eed55b first commit 3 weeks ago
.prettierrc d274eed55b first commit 3 weeks ago
README.md 149e00fad3 Update 'README.md' 3 weeks ago
package-lock.json d274eed55b first commit 3 weeks ago
package.json 74ea10d815 deno adapter 3 weeks ago
svelte.config.js 74ea10d815 deno adapter 3 weeks ago
tsconfig.json d274eed55b first commit 3 weeks ago
vite.config.ts d274eed55b first commit 3 weeks ago
yarn.lock a1508d80d9 yarn.lock 2 weeks ago

README.md

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.


npm i -g yarn
yarn add svelte-adapter-deno

curl -fsSL https://dvm.deno.dev | sh
dvm use latest

npm run build
deno run --allow-env --allow-read --allow-net ./build/index.js