this_algorithm/web-frontend
2023-03-25 22:54:14 -04:00
..
src Allow copying of different formats 2023-03-25 22:54:14 -04:00
static Add web-frontend 2023-02-27 01:20:21 -05:00
.eslintignore Add web-frontend 2023-02-27 01:20:21 -05:00
.eslintrc.cjs Add web-frontend 2023-02-27 01:20:21 -05:00
.gitignore Start work on embedding docs 2023-03-14 00:23:14 -04:00
.npmrc Add web-frontend 2023-02-27 01:20:21 -05:00
.prettierignore Start work on embedding docs 2023-03-14 00:23:14 -04:00
.prettierrc Add web-frontend 2023-02-27 01:20:21 -05:00
build.rs Make web-frontend a crate that automatically rebuilds 2023-03-15 23:41:04 -04:00
Cargo.toml Make web-frontend a crate that automatically rebuilds 2023-03-15 23:41:04 -04:00
jsconfig.json Add web-frontend 2023-02-27 01:20:21 -05:00
package.json Add searching to the map 2023-03-23 13:56:35 -04:00
postcss.config.cjs Setup tailwind css 2023-03-01 08:01:24 -05:00
README.md Add web-frontend 2023-02-27 01:20:21 -05:00
svelte.config.js Cleanup css 2023-03-05 00:03:43 -05:00
tailwind.config.cjs Setup tailwind css 2023-03-01 08:01:24 -05:00
vite.config.js Rename this_algorithm to xpin 2023-03-02 18:55:40 -05:00
yarn.lock Add searching to the map 2023-03-23 13:56:35 -04:00

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.