Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/plrenaudin/last-boilerplate
Boilerplate for web apps using Svelte and Now
https://github.com/plrenaudin/last-boilerplate
Last synced: about 2 months ago
JSON representation
Boilerplate for web apps using Svelte and Now
- Host: GitHub
- URL: https://github.com/plrenaudin/last-boilerplate
- Owner: plrenaudin
- Created: 2020-03-01T23:04:31.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:36:57.000Z (about 2 years ago)
- Last Synced: 2023-02-27T22:46:22.713Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 2.57 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Last boilerplate (WIP)
## How to install
```
npx degit plrenaudin/last-boilerplate myAwesomeProject
cd myAwesomeProject
npm i
npm run dev
```Then in another terminal run `vc dev` for Vercel support
## Tooling
- **Coding**: Svelte
- **Formatting**: Prettier
- **Linting**: Eslint
- **Bundling**: Rollup
- **Styling**: Tailwindcss
- **Testing**: Jest
- **Deploying**: Now (Zeit)## Developper experience first
- Staged code **linted** and **formatted** on commit (husky pre-commit + lint staged)
- For _svelte_ files too (thanks to eslint-plugin-svelte3 and prettier-plugin-svelte)
- Most of the **config in one place** (package.json)
- Focus on code (reduced as much noise as possible)
- **Frontend** code located in the `/src` folder
- **API** code located in the `/api` folder## VSCode
For improved developer experience, install _Svelte_ (jamesbirtles.svelte-vscode) and _Prettier_ (esbenp.prettier-vscode) Extensions