Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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**: