Tried a svelte version of the password thing
  • JavaScript 63.9%
  • Svelte 22.4%
  • CSS 9.5%
  • HTML 4.2%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2022-09-21 20:01:24 +01:00
public initial commit 2021-11-03 18:03:37 +00:00
scripts initial commit 2021-11-03 18:03:37 +00:00
src fix: remove brit pound 2021-11-05 03:24:20 +00:00
.gitignore sort out some things 2021-11-04 01:02:21 +00:00
.prettierrc.json chore: add .prettierrc.json 2021-11-05 02:17:44 +00:00
LICENSE Create LICENSE 2022-09-21 20:01:14 +01:00
package-lock.json fix some bugs 2021-11-03 19:34:39 +00:00
package.json fix some bugs 2021-11-03 19:34:39 +00:00
README.md chore: update README.md 2021-11-05 03:27:12 +00:00
rollup.config.js initial commit 2021-11-03 18:03:37 +00:00

svelte password thing

This is a little test rewriting that simple large password thing in svelte, just to see what the development experience is like with this framework.

I quite like it, although think I'll be sticking to react. Maybe more svelte for smaller wee things I want to try out.

Below is some boilerplate from the template that explains how to run this.

Get started

Install the dependencies...

cd svelte-app
npm install

...then start Rollup:

npm run dev

Navigate to localhost:5000. You should see your app running. Edit a component file in src, save it, and reload the page to see your changes.

By default, the server will only respond to requests from localhost. To allow connections from other computers, edit the sirv commands in package.json to include the option --host 0.0.0.0.

If you're using Visual Studio Code we recommend installing the official extension Svelte for VS Code. If you are using other editors you may need to install a plugin in order to get syntax highlighting and intellisense.

Building and running in production mode

To create an optimised version of the app:

npm run build

You can run the newly built app with npm run start. This uses sirv, which is included in your package.json's dependencies so that the app will work when you deploy to platforms like Heroku.