Package Exports
- tanoshi/atoms/button/TanoshiButton.svelte
- tanoshi/atoms/button/TanoshiButtonModel
- tanoshi/atoms/button/tanoshiButton.css
- tanoshi/atoms/header/TanoshiHeader.svelte
- tanoshi/atoms/header/TanoshiHeaderModel
- tanoshi/atoms/header/tanoshiHeader.css
- tanoshi/atoms/image/TanoshiImage.svelte
- tanoshi/atoms/image/TanoshiImageModel
- tanoshi/atoms/image/tanoshiImage.css
- tanoshi/atoms/input/TanoshitInputModel
- tanoshi/atoms/input/text/TanoshiTextInput.svelte
- tanoshi/atoms/input/text/TanoshiTextInputModel
- tanoshi/atoms/input/text/tanoshiTextInput.css
- tanoshi/atoms/link/TanoshiLink.svelte
- tanoshi/atoms/link/TanoshiLinkModel
- tanoshi/atoms/link/tanoshiLink.css
- tanoshi/atoms/paragraph/TanoshiParagraph.svelte
- tanoshi/atoms/paragraph/TanoshiParagraphModel
- tanoshi/atoms/paragraph/tanoshiParagraph.css
- tanoshi/atoms/pill/TanoshiPill.svelte
- tanoshi/atoms/pill/TanoshiPillModel
- tanoshi/atoms/pill/tanoshiPill.css
- tanoshi/molecules/alert/TanoshiAlert.svelte
- tanoshi/molecules/alert/TanoshiAlertModel
- tanoshi/molecules/alert/tanoshiAlert.css
- tanoshi/molecules/container/TanoshiContainer.svelte
- tanoshi/molecules/container/TanoshiContainerModel
- tanoshi/molecules/container/tanoshiContainer.css
- tanoshi/molecules/navigation/TanoshiNavigation.svelte
- tanoshi/molecules/navigation/TanoshiNavigationModel
- tanoshi/molecules/navigation/tanoshiNavigation.css
- tanoshi/package.json
Readme
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 init svelte
# create a new project in my-app
npm init svelte my-appDeveloping
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 -- --openBuilding
To create a production version of your app:
npm run buildYou can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.