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
- Host: GitHub
- URL: https://github.com/berzanorg/creta
- Owner: berzanorg
- License: mit
- Created: 2022-06-17T10:42:21.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-28T08:34:44.000Z (almost 3 years ago)
- Last Synced: 2025-03-12T23:33:18.430Z (2 months ago)
- Topics: cli, rust, tool, typescript
- Language: Rust
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 .
```