https://github.com/kangasta/week-53
Simple week calendar
https://github.com/kangasta/week-53
calendar hacktoberfest pwa svelte webapp week week-calendar
Last synced: about 1 year ago
JSON representation
Simple week calendar
- Host: GitHub
- URL: https://github.com/kangasta/week-53
- Owner: kangasta
- License: mit
- Created: 2020-10-23T21:10:25.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2022-10-30T21:20:03.000Z (over 3 years ago)
- Last Synced: 2025-02-12T22:42:36.410Z (over 1 year ago)
- Topics: calendar, hacktoberfest, pwa, svelte, webapp, week, week-calendar
- Language: Svelte
- Homepage: https://week-53.net
- Size: 803 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# week-53


[](https://codeclimate.com/github/kangasta/week-53/maintainability)
[](https://codeclimate.com/github/kangasta/week-53/test_coverage)
Simple week calendar.
## Development
### Getting stared
To get development server running on your machine, run:
```bash
# Install dependencies and start dev server
npm install
npm run dev
```
### Before committing
Lint code by running `npm run lint`.
```sh
npm run build
```
Automatically format code by running `npm run format`.
```sh
npm run format
```
Unit-test the code with `npm test`.
```bash
# Unit test
npm test
# or
npm test -- --coverage
# to also get coverage analysis
```
Create production build by running `npm run build`.
```bash
# Build
npm run build
# Build with non-root public URL
echo 'PUBLIC_URL="/${path}"' > .env
npm run build
```
See [index.html](./src/index.html) and [navigate.ts](./src/Utils/navigate.ts) for how `PUBLIC_URL` is being used.