The default Sapper template using webpack, with included support for SMUI and TypeScript.
degit
degit
is a scaffolding tool that lets you create a directory from a branch in a repository.
npx degit "https://github.com/sgarza/sapper-typescript-smui-template" my-app
Alternatively, you can use GitHub's template feature with this repository.
Running the app is as usual:
cd my-app
npm install # or yarn
npm run dev
Open up localhost:3000 and start clicking around.
At the moment, you will get a standard sapper app and one additional SMUI Button. As explained in the SMUI repository it is recommended to install each component on its own. So currently you will only be able to use buttons.
If you want to install further components, just do
npm install --save-dev @smui/component-name
Be sure to add --save-dev
or -D
to add those components as dev-Dependencies. They will not work if you install them as normal dependencies.