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!
- Host: GitHub
- URL: https://github.com/painfulexistence/create-gfx
- Owner: painfulexistence
- License: mit
- Created: 2024-04-13T12:17:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-04T13:44:13.000Z (over 1 year ago)
- Last Synced: 2025-06-29T05:34:52.952Z (3 months ago)
- Language: CSS
- Size: 266 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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
```