๐ŸŒ Sapper with TypeScript and GraphQL project base

## โ“ What is this? This is an extension to the [official Sapper Rollup template](https://github.com/sveltejs/sapper-template-rollup) with TypeScript preprocessing and a GraphQL server through TypeGraphQL (Apollo Server). If you're looking for something with much, much more bundled in, check out [my opinionated project base](https://github.com/babichjacob/sapper-firebase-typescript-graphql-tailwindcss-actions-template). - [Sapper for Svelte](https://sapper.svelte.dev/) - [Official VS Code Plugin (beta)](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode) - [TypeScript](https://www.typescriptlang.org/) - [TypeGraphQL](https://typegraphql.ml/) - Inside Svelte components, thanks to [`svelte-preprocess`](https://github.com/kaisermann/svelte-preprocess) - [Progressive Web App (PWA)](https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps) best practices set up - [`manifest.json`](https://developer.mozilla.org/en-US/docs/Web/Manifest)'s most important fields filled out - High [Lighthouse](https://developers.google.com/web/tools/lighthouse) audit score - [ESLint](https://eslint.org/) - [VS Code Plugin](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) - `eslint:fix` package script ## ๐Ÿ“‹ Copy Choose either to clone or fork depending on your preference. ### ๐Ÿ‘ Clone ```sh git clone https://github.com/babichjacob/sapper-typescript-graphql-template ``` ### ๐Ÿด Fork Click the `Use this template` button on [this project's GitHub page](https://github.com/babichjacob/sapper-typescript-graphql-template). ### โฌ‡๏ธ Install Dependencies ```sh cd sapper-typescript-graphql-template npm install # pnpm also works ``` ## ๐Ÿ›  Usage ### ๐Ÿงช Development ```sh npm run dev ``` ### ๐Ÿ”จ Building for Production If you do not need to include heavy Babel transforms and polyfills to support old browsers on your site, then remove the `--legacy` flag in the `build` package script to lighten it up. ```sh npm run prod ``` ### ๐Ÿ“ฆ Exporting a Static Site If you do not need to include heavy Babel transforms and polyfills to support old browsers on your site, then remove the `--legacy` flag in the `export` package script to lighten it up. ```sh npm run export ``` ## โš™ Configuration ### โšก Web app Many of the fields in `static/manifest.json` (`short_name`, `name`, `description`, `categories`, `theme_color`, and `background_color`) are filled with demonstrative values that won't match your site. Similarly, you've got to take new screenshots to replace the included `static/screenshot-1.png` and `static/screenshot-2.png` files. If you want, you can add [app shortcut definitions for "add to home screen" on Android](https://web.dev/app-shortcuts/#define-app-shortcuts-in-the-web-app-manifest). Once you change `theme_color`, update the `meta name="theme-color"` tag in `src/template.html` to match. The [Apple touch icon](https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html), favicon, and `logo-` files (also all in the `static` directory) are created by placing the logo within a "safe area" centered circle that takes up 80% of the canvas's dimension. For instance, the constraining circle in `logo-512.png` is 512 ร— 0.80 = 409.6 โ‰ˆ 410 pixels wide and tall. ## ๐Ÿ˜ต Help! I have a question [Create an issue](https://github.com/babichjacob/sapper-typescript-graphql-template/issues/new) and I'll try to help. ## ๐Ÿ˜ก Fix! There is something that needs improvement [Create an issue](https://github.com/babichjacob/sapper-typescript-graphql-template/issues/new) or [pull request](https://github.com/babichjacob/sapper-typescript-graphql-template/pulls) and I'll try to fix. I'm sorry, because of my skill level and the fragility of (the combination of) some of these tools, there are likely to be problems in this project. Thank you for bringing them to my attention or fixing them for me. ## ๐Ÿ“„ License MIT --- _This README was generated with โค๏ธ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_