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

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

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.