npm install
to install all the dependenciesnpm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
npm run build
src/
folder and here's the folder structure for it:src
├── app.css
├── app.html
├── lib
│ └── index.js
└── routes
├── Background.svelte
├── +layout.svelte
├── leaderboard
│ ├── CardRow.svelte
│ ├── Card.svelte
│ └── +page.svelte
├── +page.svelte
├── repos
│ └── +page.svelte
└── [slug]
├── +page.js
└── +page.svelte
6 directories, 12 files
Every folder inside the routes/
folder is a route. Every folder I mentioned, has a +page.svelte
inside it. This defines the contents of that particular page. The +page.svelte
inside the routes folder and outside any other folder inside the routes/
directory defines what's there in the root route. Refer the Svelte Documentation for more information. Feel free to approach the maintainer too.
Anurag Rao @anuragrao04
email: [email protected]
phone: 9663006833