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

https://github.com/painfulexistence/create-gfx

Set up a Web graphics project blazingly fast!
https://github.com/painfulexistence/create-gfx

Last synced: 2 months ago
JSON representation

Set up a Web graphics project blazingly fast!

Awesome Lists containing this project

README

          

# Create GFX

Set up a Web graphics application blazingly fast!

## Prerequisites
Make sure you have either of the following installed:
- [Node.js](https://nodejs.org/en/learn/getting-started/how-to-install-nodejs)
- [Bun](https://bun.sh/)

## Usage
Depending on your available JavaScript package managers, you can use one of the following commands:
#### NPM
```bash
npm create gfx $PROJECT_NAME
# or
npx create-gfx $PROJECT_NAME
```
#### Yarn
```bash
yarn create gfx $PROJECT_NAME
# or
yarn dlx create-gfx $PROJECT_NAME
```
#### PNPM
```bash
pnpm create gfx $PROJECT_NAME
# or
pnpm dlx create-gfx $PROJECT_NAME
```
#### Bun
```bash
bun create gfx $PROJECT_NAME
# or
bunx create-gfx $PROJECT_NAME
```