Psst — looking for a shareable component template? Go here --> sveltejs/component-template
This is a testing ground to play around with svelte. It is based around creating a music composition tool for musicians to quickly write down musical ideas or phrases. The app uses a mix of ui elements and a markup language for sheet music in order to aid the musician to quickly take notes while playing or composing.
The markup languae used is called abc notation. learn more here: http://abcnotation.com/ The markup interpreter used is abcjs: https://github.com/paulrosen/abcjs
Install the dependencies...
cd svelte-music-notebook
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.
This is a project template for Svelte apps. It lives at https://github.com/sveltejs/template.
To create a new project based on this template using degit:
npx degit sveltejs/template svelte-app
cd svelte-app
Note that you will need to have Node.js installed.
Install the dependencies...
cd svelte-app
npm install
...then start Rollup:
npm run dev