https://github.com/ivaneffable/create-threejs-proj
The quickest way to start a ThreeJs project
https://github.com/ivaneffable/create-threejs-proj
cli three-js vitejs
Last synced: 10 months ago
JSON representation
The quickest way to start a ThreeJs project
- Host: GitHub
- URL: https://github.com/ivaneffable/create-threejs-proj
- Owner: ivaneffable
- Created: 2023-02-04T19:39:26.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-11T12:52:55.000Z (almost 3 years ago)
- Last Synced: 2025-03-01T21:34:29.920Z (10 months ago)
- Topics: cli, three-js, vitejs
- Language: JavaScript
- Homepage:
- Size: 206 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# create-threejs-proj
A CLI for creating new [ThreeJS](https://threejs.org/) projects.

## Usage
```sh
npx create-threejs-proj
```
If you prefer to create a Typescript project.
```sh
npx create-threejs-proj -t
```
If you want the dependencies to be autoinstalled after the project creation.
```sh
npx create-threejs-proj -i
```
## The ThreeJS project
- The CLI allows you to create a Typescript or a Javascript project.
- We are using [Vite](https://vitejs.dev/), because is fast and easily configurable.
- [ESLint](https://eslint.org/) is already configured.
- The project includes a basic [prettier](https://prettier.io/) configuration.
- Git is also initialized for you.