Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lloydlobo/calcy
A calculator app for The Odin Project
https://github.com/lloydlobo/calcy
calculator odin-project regex sveltekit typed typescript
Last synced: about 1 month ago
JSON representation
A calculator app for The Odin Project
- Host: GitHub
- URL: https://github.com/lloydlobo/calcy
- Owner: lloydlobo
- Created: 2022-06-25T07:29:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-30T22:36:43.000Z (over 2 years ago)
- Last Synced: 2023-03-03T20:09:36.826Z (almost 2 years ago)
- Topics: calculator, odin-project, regex, sveltekit, typed, typescript
- Language: Svelte
- Homepage: https://petitecalcy.vercel.app/
- Size: 942 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# petitecalcy
## References
> 1. Parenthesization,
>
> 2. Factorial,
>
> 3. Exponentiation,
>
> 4. Multiplication and division,
>
> 5. Addition and subtraction.## Database
### Setup
```shell
npm install @supabase/supabase-js
``````shell
import { createClient } from '@supabase/supabase-js'// Create a single supabase client for interacting with your database
const supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key')
```- **Source**:
- **Docs**: