Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rayriffy/atm
Just a normal ATM machine
https://github.com/rayriffy/atm
Last synced: 10 days ago
JSON representation
Just a normal ATM machine
- Host: GitHub
- URL: https://github.com/rayriffy/atm
- Owner: rayriffy
- Created: 2023-12-20T21:41:51.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2023-12-21T03:34:08.000Z (11 months ago)
- Last Synced: 2024-10-11T13:28:03.671Z (about 1 month ago)
- Language: TypeScript
- Homepage: https://rayriffy.github.io/atm/
- Size: 178 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ATM
Some genius has built an ATM, but forgot to add a way of getting money out of it!
## Demo
[GitHub Pages](https://rayriffy.github.io/atm/)
## Page structure
```
┌ /atm Pin authentication page
└ /atm/app Main application
```## Packlet concept
tl;dr the way to organize code in not-too-strict way. good for fast prototyping
[More info about this architecture](https://notes.dt.in.th/PackletsSetup)
## Development
```
# Install dependencies
pnpm i# Start development server
pnpm dev# Build production bundle
pnpm build# Linting
pnpm lint && pnpm format# To run unit testing
pnpm test
pnpm test -- --coverage // with code coverage
```