Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enigmacurry/enigmacurry.com
https://github.com/enigmacurry/enigmacurry.com
geometry music nuxtjs threejs vuejs
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/enigmacurry/enigmacurry.com
- Owner: EnigmaCurry
- License: other
- Created: 2018-10-05T18:08:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-17T23:29:34.000Z (8 months ago)
- Last Synced: 2024-06-18T00:52:11.370Z (8 months ago)
- Topics: geometry, music, nuxtjs, threejs, vuejs
- Language: Vue
- Homepage: https://www.enigmacurry.com
- Size: 26.4 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EnigmaCurry.com
This is the source for my website at [enigmacurry.com](https://www.enigmacurry.com).
Feel free to copy (I do.), but make it your own.
## Architecture
* [Nuxt.js](https://nuxtjs.org/) - A [Vue.js](https://vuejs.org/) static
website builder. This does everything I ever wanted
[blogofile](https://github.com/enigmacurry/blogofile) (my old blog engine) to
do, and more. Moving to Javascript makes sense to me, given the huge
advantage of web browser ubiquity and function.
* [Three.js](https://threejs.org/) - A full abstration of
[WebGL](https://en.wikipedia.org/wiki/WebGL) in Javascript.
* [vue-threejs](https://github.com/fritx/vue-threejs) - This was the most well
developed set of Vue.js components for Three.js that I found. I have heavily
modified this base and included it in
[components/geometry](components/geometry)
* See the [LICENSE](LICENSE) for a full list of credits.### Components
* [GRenderer](components/geometry/GRenderer.vue) - A single GRenderer takes up the full width and height of the window, and persists across all pages.
* [GScene](components/geometry/GScene.vue) - Mounts into the GRenderer per page.
* [components/scenes](components/scenes) - Collection of scenes.
* [pages/geometry](pages/geometry) - The pages that contain scenes.
* [assets/shaders](assets/shaders) - GLSL shaders and
[nunjucks](https://mozilla.github.io/nunjucks/) templated shaders.
* [plugins](plugins) - nuxt.js plugins that become availalble to every
component (`this.$pluginname`), reusable geometry functions live in here.## Build Setup
``` bash
# install dependencies
$ yarn install# serve with hot reload at localhost:3000
$ yarn run dev# build for production and launch server
$ yarn run build
$ yarn start# generate static project
$ yarn run generate
```For detailed explanation on how things work, checkout [Nuxt.js
docs](https://nuxtjs.org).