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

https://github.com/berzanorg/creta

🌊 Create a TypeScript app in under a second
https://github.com/berzanorg/creta

cli rust tool typescript

Last synced: about 2 months ago
JSON representation

🌊 Create a TypeScript app in under a second

Awesome Lists containing this project

README

        

# 🌊 Creta
- Create a TypeScript app in under a second

- Creta builds a simple TypeScript app in under a second

- Written in Rust to be blazingly fast

### Example

To create a new app:
```bash
creta my-app
```

To initalize current folder as an app
```bash
creta init
```

To install dependencies and run your app:
```bash
yarn
yarn start
```


### Building from source

```bash
gh repo clone BerzanXYZ/creta
cd creta
cargo build --release
cargo install --path .
```