https://github.com/alvarosabu/nuxt-stones
TresJS video of the Official Nuxt module live on @AlvaroDevLabs Youtube channel
https://github.com/alvarosabu/nuxt-stones
3d nuxt nuxt-module nuxtjs threejs tresjs vue vuejs webgl
Last synced: 2 days ago
JSON representation
TresJS video of the Official Nuxt module live on @AlvaroDevLabs Youtube channel
- Host: GitHub
- URL: https://github.com/alvarosabu/nuxt-stones
- Owner: alvarosabu
- Created: 2023-06-29T08:25:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-29T08:25:16.000Z (over 2 years ago)
- Last Synced: 2025-02-13T01:35:00.944Z (8 months ago)
- Topics: 3d, nuxt, nuxt-module, nuxtjs, threejs, tresjs, vue, vuejs, webgl
- Language: Vue
- Homepage: https://youtu.be/U-6fRYfrAzU
- Size: 7.94 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# TresJS Nuxt Stones
> This repository contains the code and the model for the TresJS video of the Official TresJS Nuxt module live on [@AlvaroDevLabs](https://youtu.be/U-6fRYfrAzU).
## What is TresJS?
TresJS is a library that allows you to create 3D experiences declaratively using Vue Components. It is a intelligent wrapper around the ThreeJS library.
To learn more about **TresJS Nuxt module** follow the link [here](https://tresjs.org/guide/nuxt.html).
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install# pnpm
pnpm install# yarn
yarn install
```## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev# pnpm
pnpm run dev# yarn
yarn dev
```## Production
Build the application for production:
```bash
# npm
npm run build# pnpm
pnpm run build# yarn
yarn build
```Locally preview production build:
```bash
# npm
npm run preview# pnpm
pnpm run preview# yarn
yarn preview
```Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.