{"id":22962113,"url":"https://github.com/actionanand/first-svelte","last_synced_at":"2025-10-16T06:13:37.331Z","repository":{"id":44825503,"uuid":"450375198","full_name":"actionanand/first-svelte","owner":"actionanand","description":"It's a practice repo for svelte. Created using 'git template' (JS only) - basics and lifecycle hooks","archived":false,"fork":false,"pushed_at":"2022-01-22T15:43:34.000Z","size":747,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T03:28:29.258Z","etag":null,"topics":["sveltejs","svetle"],"latest_commit_sha":null,"homepage":"https://actionanand.github.io/first-svelte/","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/actionanand.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-01-21T06:12:02.000Z","updated_at":"2022-01-22T11:57:46.000Z","dependencies_parsed_at":"2022-08-25T10:31:54.825Z","dependency_job_id":null,"html_url":"https://github.com/actionanand/first-svelte","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actionanand%2Ffirst-svelte","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actionanand%2Ffirst-svelte/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actionanand%2Ffirst-svelte/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actionanand%2Ffirst-svelte/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/actionanand","download_url":"https://codeload.github.com/actionanand/first-svelte/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actionanand%2Ffirst-svelte/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259192187,"owners_count":22819433,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["sveltejs","svetle"],"created_at":"2024-12-14T19:15:21.809Z","updated_at":"2025-10-16T06:13:32.277Z","avatar_url":"https://github.com/actionanand.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"*Psst — looking for a more complete solution? Check out [SvelteKit](https://kit.svelte.dev), the official framework for building web applications of all sizes, with a beautiful development experience and flexible filesystem-based routing.*\n\n*Looking for a shareable component template instead? You can [use SvelteKit for that as well](https://kit.svelte.dev/docs#packaging) or the older [sveltejs/component-template](https://github.com/sveltejs/component-template)*\n\n---\n\n# First svelte app\n\nThis is a project template for [Svelte](https://svelte.dev) apps. It lives at https://github.com/sveltejs/template.\n\nTo create a new project based on this template using [degit](https://github.com/Rich-Harris/degit):\n\n```bash\nnpx degit sveltejs/template svelte-app\ncd svelte-app\n```\n\n*Note that you will need to have [Node.js](https://nodejs.org) installed.*\n\n\n## Get started\n\nInstall the dependencies...\n\n```bash\ncd svelte-app\nnpm install\n```\n\n...then start [Rollup](https://rollupjs.org):\n\n```bash\nnpm run dev\n```\n\nNavigate to [localhost:8080](http://localhost:8080). You should see your app running. Edit a component file in `src`, save it, and reload the page to see your changes.\n\nBy 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`.\n\nIf you're using [Visual Studio Code](https://code.visualstudio.com/) we recommend installing the official extension [Svelte for VS Code](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode). If you are using other editors you may need to install a plugin in order to get syntax highlighting and intellisense.\n\n## If you face problem when running, Please create the app using the following command\n\n```bash\nnpx degit github:actionanand/first-svelte#1-skeleton your-app-name\ncd your-app-name\n```\n\n## Building and running in production mode\n\nTo create an optimised version of the app:\n\n```bash\nnpm run build\n```\n\nYou can run the newly built app with `npm run start`. This uses [sirv](https://github.com/lukeed/sirv), which is included in your package.json's `dependencies` so that the app will work when you deploy to platforms like [Heroku](https://heroku.com).\n\n\n## Single-page app mode\n\nBy default, sirv will only respond to requests that match files in `public`. This is to maximise compatibility with static fileservers, allowing you to deploy your app anywhere.\n\nIf you're building a single-page app (SPA) with multiple routes, sirv needs to be able to respond to requests for *any* path. You can make it so by editing the `\"start\"` command in package.json:\n\n```js\n\"start\": \"sirv public --single\"\n```\n\n## Using TypeScript\n\nThis template comes with a script to set up a TypeScript development environment, you can run it immediately after cloning the template with:\n\n```bash\nnode scripts/setupTypeScript.js\n```\n\nOr remove the script via:\n\n```bash\nrm scripts/setupTypeScript.js\n```\n\nIf you want to use `baseUrl` or `path` aliases within your `tsconfig`, you need to set up `@rollup/plugin-alias` to tell Rollup to resolve the aliases. For more info, see [this StackOverflow question](https://stackoverflow.com/questions/63427935/setup-tsconfig-path-in-svelte).\n\n## Deploying to the web\n\n### With [Vercel](https://vercel.com)\n\nInstall `vercel` if you haven't already:\n\n```bash\nnpm install -g vercel\n```\n\nThen, from within your project folder:\n\n```bash\ncd public\nvercel deploy --name my-project\n```\n\n### With [surge](https://surge.sh/)\n\nInstall `surge` if you haven't already:\n\n```bash\nnpm install -g surge\n```\n\nThen, from within your project folder:\n\n```bash\nnpm run build\nsurge public my-project.surge.sh\n```\n\n### Other Resources\n\n- [Replacement for git clone - degit](https://dev.to/vuelancer/replacement-for-git-clone-degit-3lf1)\n- [npm-run-all NPM Package](https://www.npmjs.com/package/npm-run-all)\n- [Images with Lorem.space - placeholder image generator](https://lorem.space/api)\n- [Building Svelte micro frontends with Podium](https://blog.logrocket.com/building-svelte-micro-frontends-podium/)\n- [CTO’s guide to Svelte – what can the rising frontend framework do for you?](https://tsh.io/blog/svelte-framework/)\n- [What I Like About Writing Styles with Svelte](https://css-tricks.com/what-i-like-about-writing-styles-with-svelte/)\n- [5 things I love about Svelte](https://dev.to/mauro_codes/5-things-i-love-about-svelte-39h9)\n- [Why Svelte is different - and awesome!](https://blog.jannikwempe.com/why-svelte-is-different-and-awesome)\n- [The Svelte Handbook](https://www.freecodecamp.org/news/the-svelte-handbook/)\n- [Use Svelte with SASS/SCSS in VSCode (example + cloneable repo)](https://daveceddia.com/svelte-with-sass-in-vscode/)\n- [How to use scss with Svelte?](https://dev.to/mefaba/how-to-use-scss-with-svelte-4c6o)\n\n### Useful Resources \u0026 Links\n\n1. [Official Docs (if)](https://svelte.dev/tutorial/if-blocks)\n1. [Official Docs (each)](https://svelte.dev/tutorial/each-blocks)\n1. [Official Docs (keys)](https://svelte.dev/tutorial/keyed-each-blocks)\n1. [Event Modifier](https://svelte.dev/tutorial/event-modifiers)\n1. [Svelte Lifecycle hooks tutorial](https://reactgo.com/svelte-lifecycle-hooks-tutorial/)\n1. [The Component Lifecycle in Svelte](https://betterprogramming.pub/the-component-lifecycle-in-svelte-1784ecab5862)\n1. [Svelte Component Lifecycle Hooks](https://medium.com/swlh/svelte-component-lifecycle-hooks-68cfba7f3c19)\n1. [How to deploy a React, Angular and Vue project to Github pages](https://deepinder.me/how-to-deploy-a-react-angular-vue-project-to-github-pages)\n1. [Deploying a Svelte Application to Github Pages](https://www.devsamples.com/javascript/svelte/deploy-svelte-app-gh-pages)\n1. [Publishing on Github Pages](https://alexxnb.github.io/svelte-docs/publishing/ghpages/)\n\u003e Don't forget to prefix paths in `html` file with `.` before deployment.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factionanand%2Ffirst-svelte","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Factionanand%2Ffirst-svelte","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factionanand%2Ffirst-svelte/lists"}