Coder Social home page Coder Social logo

ethanny2 / threejs-es6-webpack-barebones-boilerplate Goto Github PK

View Code? Open in Web Editor NEW
19.0 2.0 5.0 18.41 MB

Webpack ES6 config and dev/prod environment for experimenting with ThreeJS

Home Page: https://threejs-webpack-boilerplate.netlify.com/

License: MIT License

JavaScript 84.65% CSS 10.91% HTML 4.43%
webpack threejs eslint 3d-models es6 javascript tweenjs shaderparticleengine draco-loader gltf optimizations webgl babel sass boilerplate boilerplate-template boilerplate-front-end

threejs-es6-webpack-barebones-boilerplate's Introduction

threejs-es6-webpack-barebones-boilerplate

Build Status GitHub issues GitHub forks GitHub stars GitHub license Twitter Badge

Default scene

About

This project was created to provide a good starting point for learners who are new to webpack, JavaScript bundlers, and three.js. I wanted to create an optimal development and production environment that was simple to understand and hassle-free to set up for experts and novices alike. Project key points:

  1. Unobtrusive - No unnecessary abstractions or imposed design patterns. Quickly get a three.js project up and running.

  2. Beginner Friendly - Well documented with numerous explanations of concepts and of code.

  3. Static Site Workflow - This boilerplate provides a streamlined workflow and configuration that also works well for making static sites without three.js.

Prerequisites

To install and run this boilerplate you must have and node.js and git on your computer before running.

Project Structure

📂

|-- dist --> Build output files; where files are built for production
|-- src  --> Source files; where you do development
    |-- js
    |   |-- index.js --> Singular entry point for webpack
    |   |-- scripts  --> Any supplementary scripts or entry points go here
    |   |-- vendor   --> Any vendor code (e.g code you didn't write)
    |       --SPE.js
    |-- sass   --> write your css, sass, or scss files. All are formats are supported
        |-- style.scss
    |-- static  --> Where to place all of your static assets and html templates
        |-- audio
        |-- fonts
        |-- html
        |-- images
        |   |-- favicons
        |-- models
            |-- dragon
|-- webpack.common.js
|-- webpack.dev.js
|-- webpack.prod.js
|-- package-lock.json
|-- package.json
|-- postcss.config.js
|-- .eslintrc.js
|-- .browserslistrc
|-- .gitignore
|--  robots.txt
|--  .travis.yml

Usage/NPM Scripts

📜

Installation steps:

1. git clone https://github.com/ethanny2/threejs-es6-webpack-barebones-boilerplate.git your-project
2. cd your-project
3. npm install

NPM Scripts

Removes/cleans every file in the dist directory. This is used before each build to remove all the previous build's files. The rimraf npm package gives cross-platform support for the UNIX rm -rf (remove files from a directory recursively).

"clean": "rimraf dist/*"

Runs the npm eslint package on the current directory. (represented on UNIX by . ). ESlint will identify any incorrect patterns (expressed as either a warning or an error) and print to your terminal.

 "lint": "eslint ."

Runs ESlint on the current directory again, but this time fixable errors (errors that have to do with formatting rules) are fixed and saved. Errors that deal with code quality (e.g unused variables, implicit global variables) must be fixed manually.

"lint-fix": "eslint --fix ."

Sequentially runs the clean script then specifies the configuration file (--config) to start the webpack production build. These webpack commands are available via the already included webpack-cli.

 "build": " npm run clean && webpack --config webpack.prod.js"

Starts a live reloading development  server at localhost:9000. Hot module reloading is enabled for changes in any .css/.sass/.scss file. Both the development and production configs both produce identical file structures in the dist directory, but the output files for development  are not written to disk, they are served from memory for better speed. This is why the dist directory appears empty when in the development environment. To stop the server press CTRL+C on Windows or CMD+C on Macs.

 "start-dev": "webpack-dev-server --open --config webpack.dev.js"

Example using gLTF Pipeline CLI and Draco Compression to compress a .gltf file .This results in a smaller single .gLTF file with textures included. (Change args to compress new models)

"compress-draco": "gltf-pipeline -i ./src/static/models/dragon/scene.gltf -o ./src/static/models/dragon/dracoDragon.gltf -d",

Example using gLTF Pipeline CLI to convert a .gltf file to a .glb file. This results in a single .glb file but doesn't result in a file size reduction. (Change args to compress new models)

"compress-glb": "gltf-pipeline -i ./src/static/models/dragon/scene.gltf -o ./src/static/models/dragon/scene.glb"

Table of Contents

📖

Glossary

💬

  • Polyfill: Piece of code (js file in the context of the web) used to provide modern functionality to older browsers that don't natively support it.
  • JavaScript bundlers: Tools that gather your javascript files and dependencies into (usually) one js file.
  • webpack: A static module bundler for modern JavaScript applications. When webpack processes your application, it internally builds a dependency graph which maps every module your project needs and generates one or more bundles.
  • Transpilation: Type of compiler that takes source code written in a specific programming language and produces the equivalent source code in the same or a different programming language.
  • Tree shaking: Is a term (in the context of JavaScript) used to describe the removal of dead/unused code. Bundlers such as webpack and Rollup automatically remove dead code when bundling multiple JavaScript files.
  • gLTF: A one-size fits all file format that stores 3D model information in a JSON format. This results in a reduction of the size of the 3D asset and the time needed to unpack those assets. (Format optimized for web)
  • glb: A binary file format representation of 3D models saved in the GL Transmission Format (glTF). This binary format stores all of the .gLTF's assets (JSON, .bin, textures) in the binary blob.
  • Draco compression: An open source library for compression and decompressing 3D assets.
  • Threejs: A 3D JavaScript library that abstracts obtuse webGL concepts into streamlined code base.
  • WebGL: A JavaScript API for rendering high-performance interactive 3D and 2D graphics within any compatible web browser without the use of plug-ins
  • Minification: The process of removing unnecessary or redundant data without affecting how a resource is processed by the browser
  • Production Environment: An environment that represents the finished website live on the internet. Usually this environment prioritizes minification, compression and optimization of assets to produce the best site.
  • Development Environment: An environment that resides locally on your computer where you can test features and code. Usually has some mechanism in place to run the project on localhost with live reloading.
  • Loaders: Community written packages that make it possible to add file types other than .js to webpack's dependency graph building
  • Regular Expression: Rules that govern which sequence of character come up in a search. (Also known as regex)
  • Glob: A string of literal and/or wildcard characters used to match file paths. Globing is the act of locating files on a filesystem using one or more globs.
  • CommonJS: Standard module specification used in Node.js used to break JavaScript programs into smaller more managable pieces called modules. (e.g require(...) is the CommonJS format)
  • ES Modules: Standard module specification used/supported by most modern browsers. webpack recognizes both CommonJS and ES Module syntax.
  • Script defer attribute: Boolean attribute set on script tags that indicates to a browser that the script is meant to be executed after the document has been parsed, but before firing DOMContentLoaded.
  • Source maps: A file that maps from the transformed source to the original source, enabling the browser to reconstruct the original source and present the reconstructed original in the debugger. (Babel/transpilation and minification are two examples of processes that transform your code)
  • Vendor prefixes: Prefixes specified by browser vendors to enable the use of experimental modern/cutting-edge CSS features. Developers should wait to include the un-prefixed property until browser behavior is standardized
  • Chunk: A name used by webpack to represents a module of code that is the result code-splitting your program
  • Linter: Is a tool that analyzes source code to flag programming errors, bugs, stylistic errors, and suspicious constructs
  • Compression: A method used in software development to decrease the size and redundancy of a particular file to make it more compact and efficient to serve over the web.
  • HTTP/1: Network protocol that enables transfer of hypermedia documents on the Web, typically between a browser and a server so that humans can read them. Characterized by making multiple requests per asset needed (not so efficient)
  • HTTP 2: A major revision of the HTTP network protocol. The primary goals for HTTP/2 are to reduce latency by enabling full request and response multiplexing, minimize protocol overhead via efficient compression of HTTP header fields.
  • Hot Module Replacement: Exchanges, adds, or removes modules while an application is running, without a full reload. This is particularly useful for a development environment where you can maintain application state while changing the application source.
  • Tweening: Short for in-betweening, the process of generating intermediate frames between two images to give the appearance that the first image evolves smoothly into the second image. (e.g Animation of an object/mesh from one position to another)

Configuration and Utility Files

🔧

.browserslistrc

Browserlist is a configuration settings file that is shared across multiple different tools used to build the front-end of websites. In this configuration file you can specify which browsers you wish to support. In this project the NPM packages Autoprefixer and Babel are reliant on this configuration file to produce an output that is usable on the browsers specified in this file.

For instance the contents of my file specify -> (not IE 11), so any features needed to support IE 11 browsers that would normally be added by Autoprefixer and Babel are excluded during the build process.

Each line in this file represents a new browser query:

  • "defaults" is provided by Browserlist and represents a reasonable starting configuration for most projects
  • "maintained node versions" means target all nodejs versions still maintained by the Node.js foundation.

The full list and how to make construct advanced queries can be found on the Browserlist github page.

defaults
not IE 11
not IE_Mob 11
maintained node versions

.eslintrc.js

ESLint is a tool for identifying and reporting on patterns found in ECMAScript/JavaScript code, with the goal of making code more consistent and avoiding bugs. Through the use of this configuration file you can specify rules that propagate one of the following things...

  • Nothing (0): ESLint ignores any rule with 0
  • Warning (1): ESLint prints warning to terminal if rule is broken
  • Error (2): ESLint creates an error and the program will not compile if this rule is broken

In this configuration I set the rule "no-unused-vars" to 1, so it will warn if there are any unused variables but it will still allow my program to compile. "eslint linebreak-style" is a fix for Windows computers. Normally this eslint configuration will propagate an error every time you hit the enter key on a computer running Windows because the enter key returns CRLF, whereas on UNIX environments hitting enter will just produce an LF character. This line supresses that error on Windows. Read More

...
  rules: {
    "no-unused-vars": 1,
    "eslint linebreak-style": [0, "error", "windows"],
  }
...

While you could definitely have ESLint handle both formatting styles and code-quality rules a very common configuration (and the one used by this project) is using ESLint in combination with another code formatter called Prettier. Prettier handles the formatting of your code, and ESlint handles the code-quality rules. You can read more about these rules at the following link.

However if you have both ESLint and Prettier installed ESLint will attempt to both handle formatting styles and code-quality rules by default; this may led to an annoying situation where your prettier formatter is breaking your ESLint or vice-versa. In order to prevent this we use a combination of eslint-config-prettier and eslint-plugin-prettier.

The extends fields allows you to use a predefined/shared set of ESlint rules from another configuration. This is where the majority of the ESLint rules come from as I have only explicity declared 2 rules as seen above. The order of this array is processed from right to left so it will gather rules from "plugin:prettier/recommended" first then extend/supplement that rule set with the rules found in "eslint:recommended". Read more

...
plugins: ["prettier"]
...
extends: ["eslint:recommended","plugin:prettier/recommended"]

postcss.config.js

This configuration file is used by the postcss-loader NPM package. Postcss-loader is a webpack loader that is used to transform your CSS while adding a number of beneficial features such as increased readability, vendor-prefixes and polyfills. Read more

In this case we want to add vendor-prefixes automatically to our CSS code so we specify the postcss-loader to use the Autoprefixer in this configuration file.

  plugins: [require("autoprefixer")]

robots.txt

A common file included on websites that specifies which pages of your site can be accessed/indexed by a web crawler (bot that indexes content for search engines). Below we allow all web crawlers (User-agent) to access our site with the wild card (*) symbol. Additionally, we allow all web crawlers to access all parts of our site; note this is the configuration is used by default and doesn't even require a robots.txt file. Read more

User-agent: *
Allow: /

webpack.common.js

webpack is a static module bundler for JavaScript applications. It uses configuration files to determine how to bundle your files and build its dependency graph. As per the webpack documentation, it is best to have different files for both development and production environment as the needs/goals of these builds greatly differ. Of course, in order to keep the config files as DRY as possible the files are separated into their respective environments and the settings shared between the two environments are placed in this common file. Later the settings from this file will be combined separately with both the dev and production config files through the use of webpack-merge.

Entry/Output

Here there is a singular entry point of the program (where the bundle starts) at index.js and singular bundle produced in dist/js called [name].bundle.js which will contain most of your JS code needed to run your application.

const entry = path.resolve(__dirname, "./src/js/index.js");
entry: {
    main: entry
},
output: {
    filename: "js/[name].bundle.js",
    path: path.resolve(__dirname, "dist")
}

Many people also specify an entry point for vendor code (nodeModules and other code) as well but according to the official webpack documentation...

In webpack version < 4 it was common to add vendors as a separate entry point to compile it as a separate file (in combination with the CommonsChunkPlugin). This is discouraged in webpack 4. Instead, the optimization.splitChunks option takes care of separating vendors and app modules and creating a separate file. Do not create an entry for vendors or other stuff that is not the starting point of execution. Read more

Loaders and Rules

By default webpack is only able to create dependency graphs and bundle JavaScript files; in order to load all your assets through webpack (images, audio, 3d models, css, html) we rely on the rich ecosystem of community written webpack loaders available on NPM. Note: webpack loaders are evaluated from the bottom up. This means the last loader (furthest toward the bottom) specified in a particular ruleset is the first to run.

In this a regular expression (in test) targets all .js files (except node_modules) in the project and runs it through these loaders.

  • eslint-loader lints all .js files
  • babel (which requires 3 NPM packages to function babel-loader ,@babel/core and @babel/preset-env) transpiles ES6 code to ES5 so older browsers can use your code as well.
    • Enabling the caching options on both loaders greatly speeds up build times in both prod and dev.
...
{
        test: /\.m?js$/i,
        exclude: nodePath,
        use: [
          // Transplies from ES6 to ES5.
          {
            loader: "babel-loader",
            options: {
              cacheDirectory: true,
              presets: ["@babel/preset-env"],
              cacheCompression: true
            }
          },
          // Lint javascript before transpiling
          {
            loader: "eslint-loader",
            options: {
              cache: true
            }
          }
        ]
      }
...

This rule is used to process CSS/SASS styles. The regex matches all SASS, SCSS and CSS files so you may write your styles in any of those formats.

  • sass-loader compiles your SASS/SCSS code (if applicable) to CSS.
  • postcss-loader is used to add vendor-prefixes to your CSS.
  • css-loader translates CSS to CommonJS webpack can understand; this loader interprets @import and url() like import/require() and will resolve them.
  • Finally mini-css-extract-plugin is extract CSS into separate files if you wish.
    • hmr enables styles to be updated on the dev server without having to reload the page.
    • public path specifies what path the loader should use to resolve assets that are used within CSS files (e.g import() a font in a stylesheet) after the project is built.(This is not the path to your static assets in src/)
    • sourceMap is enabled for most loaders for easier debugging
 {
        test: /\.(sa|sc|c)ss$/i,
        use: [
          {
            loader: MiniCssExtractPlugin.loader,
            options: {
              // Path all assets AFTER build process
              publicPath: "../",
              hmr: true
            }
          },
          // Translates CSS into CommonJS
          {
            loader: "css-loader",
            options: {
              sourceMap: true
            }
          },
          // Adds vendor prefixes with Autoprefixer
          "postcss-loader",
          {
            // Compiles SASS to CSS
            loader: "sass-loader",
            options: {
              sourceMap: true
            }
          }
        ]
      }

Plugins

Another feature of webpack that enables you to add helpful tooling to your build process.

html-webpack-plugin is a plugin used to generate html files either through your templating engine of choice or from an html file you supply. This plugin also automatically places your bundled .js output file, and CSS output file in the html file automatically. This plugin alone will NOT allow you to include images in your html file (img src=... ) that are detected by the webpack build process. This is accomplished through a combination of html-loader and file-loader.

  • fileName: is the name of the output file
  • template: is where to find the html template use as a base.
  • favicon: sets the favicon of the generated page. If you want more options to generate multiple favicons try the favicons-webpack-plugin. Be aware including this plugin adds a lot of overhead to build times.
  • inject: tells the plugin where to place the bundled JavaScript files; in this case we place them in the head as opposed to right before the end of the body tag for performance gain reasons (in combination with the "defer" attribute on script tags).
new HtmlWebpackPlugin({
    title: "Threejs ES6 Simple Boilerplate",
    filename: "index.html",
    template: "./src/static/html/index.html",
    favicon: "./src/static/images/favicons/favicon.ico",
    inject: "head"
}),
//new HtmlWebpackPlugin({...}) to make more html pages 

preload-webpack-plugin is a plugin that injects rel="preload" attributes into certain link tags created by the HtmlWebpackPlugin. This is used on fonts exclusively as they are most conducive to preload and support good user experience and preventing FOUC (flash of un-styled content/text). Read more.

  • rel: indicates what attribute we wish to add. (can also be prefetch)
  • fileWhiteList: array of values of which file types to whitelist. One regex is used to match all font file types.
  • as: Is a key that returns the type of resource (font,script are possible vals) that will be targeted by this plugin. This function uses a regex to check all font types and return "font" if any are matched.
  • include: "allAssets" ensures this preloads fonts also resolved using file-loader. Read more
new PreloadWebpackPlugin({
    rel: "preload",
    as(entry) {
        if (/\.(woff|woff2|ttf|otf)$/.test(entry)) return "font";
    },
    fileWhitelist: [/\.(woff|woff2|ttf|otf)$/],
    //Includes all assets; needs more clarification
    include: "allAssets"
})

script-ext-html-webpack-plugin similar to PreloadWebpackPlugin but this one adds the defer attribute to the script tags in your html files. In conjunction with placing the all bundled .js files in head this increases performance. Read more

new ScriptExtHtmlWebpackPlugin({
    defaultAttribute: "defer"
}),

Optimizations and Chunking

Chunks/ Code Splitting

To avoid the issue of duplicate code and dependencies webpack has a feature that allows you to break you code up into chunks (also known as code splitting). As of webpack version < 4 code splitting into separate chunks is achieved through optimization.splitChunks property of a webpack config file.

*Side Note: In webpack < 4 there are already intelligent defaults in place for creating chunks that fit web performance best practices. Learn more

Caching

If a new build produces a new file name that differs from the version in the user's cache it will trigger a redownload of that content. Once your site has been deployed to a server a common technique is to add a hash within the file name (e.g script.7e2c49a622975ebd9b7e.js) and then change the hash value ONLY IF the contents of the file changed.

This ensures the visitor will only download files that change from build to build and have the rest served from their cache for better performance. Using unique hashes to explicitly force the user to redownload certain files is called cache-busting and is very easy to configure and use in webpack 4. In combination with code splitting this is a very powerful tool to keep your live site fast for returning visitors. Read more

Output substitutions

To automatically generate unique hashes for files webpack uses a feature called substitutions that are able to add templating to the output of file names. There are several substitutions available, but the ones used in this project are

  • [name]: Interpreted as the name of the file used to create the output
  • [ext]: Interpreted as the extension of the file used to create the output
  • [hash]: Interpreted as a unique hash that changes each time any file in the build changes
  • [contenthash]: Interpreted as a unique hash that only changes if the content of a file does

hash vs contenthash vs chunkhash

webpack has a default behavior that will change the [contenthash] even when nothing in that particular file has changed. This is because every time you build webpack generates an unique piece of code that contains the manifest and the runtime environment responsible for linking the code together. If left on this means that the end-user will ultimately redownload whole files even when the content is identical to the one in their cache. In order to prevent this we use the following settings

  • runtimeChunk:"single" -> Tells webpack to take the runtime code needed build project and offload it into a runtime .js file so on subsequent builds if no content changed their contenthashes will remain the same.
  • moduleIds:"hashed" -> Without this option set webpack will increment the module.id field of each all chunks when a build is triggered; this often leads to the vendor/node_modules folder chunk changing its contenthash value (even though no vendor code was changed or added) and triggering a large redownload of data for the user.
  • splitChunks: In conjunction with cacheGroups is how to perform chunking in webpack. In the example below I name a chunk styles and target all .css via a regex.
...
optimization: {
    runtimeChunk: "single",
    moduleIds: "hashed",
    splitChunks: {
        cacheGroups: {
            styles: {
                name: "styles",
                test: /\.css$/,
                chunks: "all",
                enforce: true
            }
        }
    }
}
...

Development Environment

💻

Overview

The development environment builds to dist/. It includes a development server with live-reload, loaders for static files, and basic chunking optimizations. Hashing is not needed instead files are output with this simple substitution [name].[ext]

Loaders

  • file-loader: is used to load most static assets including images, html files, fonts, 3D models and audio. Add to the regex to suit your own needs.
    • esModule: false -> This setting is critical to getting this library to work with html-loader. This turns off file-loaders ES2015 module syntax and reverts it to CommonJS so it will correctly parse image src attributes with html-loader. Read More html-loader doesn't yet support es module syntax and it is a known issue.
{
    test: /\.(png|svg|jpe?g|gif|ico)$/i,
        use: {
            loader: "file-loader",
            options: {
                outputPath: "images/",
                name: "[name].[ext]",
                esModule: false
            }
        }
}

Dev Server

Spins up a development server at the specified port using webpack-dev-server.

  • hot:true -> Enables hot module reloading of the server
  • compress:true -> Serves development build via compressed formats for better performance.
  • contentBase -> Specifies path to build/output directory.
 devServer: {
    contentBase: "./dist",
    compress: true,
    hot: true,
    port: 9000
  }

Plugins

Styles are loaded in the webpack.common.js config file and the mini-extract-css-plugin is used to configure the output of the .css file created by the development build.

new MiniCssExtractPlugin({
      filename: "css/style.css",
      chunkFilename: "css/style.[id].css"
})

Optimizations

The node_modules folder is separated and chunked into a group called vendor to prevent redownload. This is done by default in webpack 4 but included for clarity's sake.

...
cacheGroups: {
    vendor: {
        test: /[\\/]node_modules[\\/]/,
        name: "vendor",
        chunks: "all",
        reuseExistingChunk: true
    },
}
...

Production Environment

🎉

Overview

The production environment builds to dist/. There are a number of optimization in place that help produce the fastest most efficient production site such as... compression of image files, minification of .html, .js , .css files, gzip compression of all files, and automatic removal of unused css styles through out the whole project. Each file is output with a [contenthash] substitution in order to facilitate proper hashing on file names that only change if a particular file's content does.

Loaders

  • file-loader: Loads in the same manner as the development environment and is used to include most static assets including images, html files, fonts, 3D models and audio. Add to the regex to suit your own needs.
{
    test: /\.(png|svg|jpe?g|gif|ico)$/i,
        use: {
            loader: "file-loader",
            options: {
                outputPath: "images/",
                name: "[name].[contenthash].[ext]",
                esModule: false
            }
        }
}

Plugins

  • mini-css-extract-loader: Styles are loaded in the webpack.common.js config file and the mini-extract-css-plugin is used to configure the output of the .css file created by the production build.
new MiniCssExtractPlugin({
      filename: "css/style.css",
      chunkFilename: "css/style.[id].css"
})
  • imagemin-webpack-plugin: Used to compress your image files that are produced by your production build process. By default this plugin has a set a default compression methods that compresses gif, png and jpg files. The imagemin-mozjpeg package is a plugin for Imagemin that offers a wide range of options for compression quality of jpeg images.
new ImageminPlugin({
    optipng: {
        optimizationLevel: 6
    },
    plugins: [
        imageminMozjpeg({
            quality: 100,
            progressive: true
        })
    ]
})
  • compression-webpack-plugin: Used to gzip all files that match the specified test regex. In this case all html, css, and js files are gziped. Note both the normal version of the file and the zipped version are produced. When served over a network that accepts gzipped content the zipped version will be sent.
 new CompressionPlugin({
      test: /\.(html|css|js)(\?.*)?$/i
})
  • purgecss-webpack-plugin: Purgecss is a tool that detects any unused css code in your project and deletes it so you are not serving unnecessary styles; this is particularly helpful when using a styling framework like Bootstrap that includes a lot of extraneous code.
    • paths: Is used in conjunction with glob to specify a pattern that searches the entire project for css to potentially delete.
 new PurgecssPlugin({
    paths: glob.sync("src/**/*", { nodir: true })
})

Note: These plugins are included in the optimization.minimizer section because they deal with minification of code.

  • terser-webpack-plugin: Is a tool used to minify all .js files (target by default) in the project. Running cache, and parallel speeds up the minification process.
new TerserJSPlugin({
    cache: true,
    parallel: true,
    sourceMap: true
})
new OptimizeCSSAssetsPlugin({})

Optimizations

In the production environment is really where chunking optimizations matter. A common tactic (and the one used in the development environment) is to create a custom chunk for all node_modules code. This is a good first step to reducing the end-users bundle size as they will only redownload those node_modules dependencies if any of the code within them changes. However, with this configuration the user has to download the whole vendor chunk if any of the files in node_modules changes. This could incur redownloading of data that is identical to the one in the end user's cache.

To fix this we take it a step further we create a chunk for each individual NPM package within the node_modules/ folder so that if any dependency is altered it ensures the return visitor of the site only download the NPM packages that changed.

This results in a js file for each NPM package included in the dependencies of your project. In the past where most websites were served via HTTP/1 more requests meant an overall slower site and a longer load time. Today most site serve requests via HTTP/2 which allows parallel multiplexed requests and is generally fast regardless of the number of requests. Source Source2

...
cacheGroups: {
    vendor: {
        test: /[\\/]node_modules[\\/]/,
        reuseExistingChunk: true,
        name(module) {
            const packageName = module.context.match(
              /[\\/]node_modules[\\/](.*?)([\\/]|$)/
            )[1];
            return `vendor/npm.${packageName.replace("@", "")}`;
          }
    },
}
...

three.js Scene and Examples

3️⃣

Basic Scene Setup

There are already a number of good resources detailing how to setup a basic three.js scene. In this project I used discoverthreejs.com's code to create the scene and cube mesh. Similarly the offical three.js documentation has a great guide for setting up a scene. For beginners I recommend reading both.

Imports

At the top of the file is where you import all dependencies and vendor code you need in your program. webpack is able to recognize a wide variety of different module formats (AMD, CommonJS etc...) but for source files I choose ES2015 module syntax.

Library/Vendor Code

Note: Since the three.js npm package is based on the module version many features must be explicitly exported to be used as they are not included in the main module file. These are features are found in the node_modules/three/examples/... path. Many tutorials online are written using the non-module version of three.js where loaders are included under the THREE namespace (e.g THREE.GLTFLoader(...)), so if there is an error always check if you imported the specific component first. Read more

Internally the GLTFLoader and DRACOLoader rely on ES6 promises to work. The promise polyfill is included to support these loaders on IE11.

import * as THREE from "three";
import TWEEN from "@tweenjs/tween.js";
import { WEBGL } from "three/examples/jsm/WebGL.js";
import { OrbitControls } from "three/examples/jsm/controls/OrbitControls.js";
import { DRACOLoader } from "three/examples/jsm/loaders/DRACOLoader.js";
import { GLTFLoader } from "three/examples/jsm/loaders/GLTFLoader.js";
import * as Stats from "stats.js";
import "promise-polyfill/src/polyfill";
import { SPE } from "./vendor/SPE.js";

Static Assets

Thanks to the included loaders we are now able to parse nearly any type of static resource and add it to the dependency graph. Below audio, images and a 3D model are parsed via fileLoader so we are able to import static resources in the same way as any other ES2015 module.

import fireSfx from "../static/audio/fire_compressed.mp3";
import modelTexture from "../static/images/grass-texture.jpg";
import particleTexture from "../static/images/lightning-texture.png";
import dragonModel from "../static/models/dragon/dracoDragon.gltf";

Here we import our html and style files. We do this to make webpack aware of these resources (they are added to the dependency graph) so that html-loader can be parse img src tags from our html file.

import "../sass/style.scss";
import "../static/html/index.html";

now in index.html ... the src attribute of img tags are able to be replaced by html-loader.

<img src="../images/flame-texture.png" />

Loading Screen

Loaders in three.js load models asynchronously. This means that the other components of the scene are not blocked by the loading of a model. However, loading a 3D model may take some time and a solution many sites opt for is to display a loading screen until the model is fully loaded. The loading screen code from this boilerplate is from the three.jsforum and the loading animation is from this codepen. There are 3 step when creating a loading screen in three.js:

  1. Add the loading screen html markup and styles. On initial load have the load screen cover the entire viewport.
     <div id="loader-wrap">
       <div class="loader">
         <span class="loader-item"></span>
         <span class="loader-item"></span>
         <span class="loader-item"></span>
         <span class="loader-item"></span>
         <span class="loader-item"></span>
         <span class="loader-item"></span>
         <span class="loader-item"></span>
         <span class="loader-item"></span>
         <span class="loader-item"></span>
       </div>
     </div>
     ...
     .loader{
       z-index:2;
         $loader-size: 8;
         $animation-duration: 2s;
         $animation-speed: 10;
     ...
    
  2. Set up a LoadingManager and give it callbacks for what happens for its onLoad() event. This callback is triggered when the model is fully loaded; indicating its time to remove the loading screen by lowering its opcaity. (fade-out class)
     manager = new THREE.LoadingManager();
     manager.onLoad = function() {
     const loadingScreen = document.getElementById("loader-wrap");
     loadingScreen.classList.add("fade-out");
     loadingScreen.addEventListener("transitionend", onTransitionEnd);
     };
    
  3. Pass the created manager instance into the constructor of your loader
    loader = new GLTFLoader(manager);
    

Tween.js + three.js

It is entirely possible to animate your three.js scene by incrementing values in the update() function of the render loop.

function update() {
  mesh.rotation.z += 0.01;
  mesh.rotation.x += 0.01;
  mesh.rotation.y += 0.01;
}

This is good for simple animations but for a more robust animation experience Tween.js is a library that pairs well with three.js. A tween (from in-between) is a concept that allows you to change the values of the properties of an object in a smooth way. Tween.js works well with three.js because many of the Objects in your scene have their properties (Object3D .position, .rotation, .scale etc...) expressed via a three.js class called vector3.

Tweens take in 3D vectors by default so we can easily animate the rotation or a similar property.

  • Here a tween is set on the cube's (called mesh) rotation. It is rotated over a course of 8s (duration = 8000) from the position (x:0, y:0, z:0) to (x:Math.PI, y:Math.PI, z:Math.PI) a full rotation.
  • After starting the tween, be sure to call TWEEN.update(); in update() so the tween is updated on every frame
cubeRotateTweenA = new TWEEN.Tween(mesh.rotation)
    .to(rotateCoords, duration)
    .easing(TWEEN.Easing.Linear.None)
    .onUpdate(() => {
    });
  // Start the tween
  cubeRotateTweenA.start();
  cubeRotateTweenA.repeat(Infinity);

  function update(){
    ...
      TWEEN.update();
    ...
  }

For the full options see the tween documentation user's guide.

Loading a Model

This boilerplate currently only supports the loading of 3D models that can be contained into a single file. For example many .gLTF files can come with upwards of 3 files needed to properly render the model.

  • scene.gltf (JSON file that describes structure and composition of scene)
  • scene.bin (Binary data that contains geometry or animation data)
  • textures (Image files that contain texture data for the model)

Read More about GLTF

In webpack there really is not an elegant way to associate all 3 files with each other while having each of the files added to webpack's dependency graph. One solution would be to just statically copy the necessary files using the CopyWebpackplugin and just reference them as static resources. This works but the assets are not added to the dependency graph which is the main feature for bundling these assets with webpack.

Instead its better to just combine all the necessary files into a single file (if possible for your 3D model format). For .gltf files they are able to be combined into a single .glb file which includes the textures and binary data for the .gltf model. Similarly compressing a .gltf file with Draco compression results in a single .gltf file that has the binary data and textures embedded into that single file. Because the .gltf format is optimized for the web you should generally always be using .glb or draco compressed .gltf models

Gltf-pipeline compression

gltf-pipeline is a tool made for changing .gltf files to .glb files (size doesn't change; but model is contained in a single .glb file) and compressing .gltf files to draco compressed .gltf files. The package offers a node.js API but there seems to be issues with the latest release that prevent the API from working correctly on newer versions of node.

The CLI-tool works correctly and here is a sample command to convert .gltf -> draco compressed .gltf

  • -i input file: model.gltf
  • -o output file: modelDraco.gltf
  • -d Runs draco compression
gltf-pipeline -i model.gltf -o modelDraco.gltf -d

To get an idea of how well this compression works I have included both the uncompressed scene.gltf and scene.bin and the resultant draco compressed file.

Uncompressed dragon

Nearly 30MB

scene.bin (~30,000kb) + scene.gltf(~20kb) = 30,020kb
Draco Compressed dragon

1.3MB!

dracoDragon.gltf(~1300kb) = 1300kb

Loading a draco compressed .gltf

In three.js the draco loader is used for loading pure .drc (draco) files. In order to load a draco compressed .gtlf we need instances of both GLTFLoader and DRACOLoader.

You must pass the correct decoding algorithm path to the draco loader in order to correctly display the model. This decoding files are located at the path location node_modules/three/examples/js/libs/draco. webpack doesn't currently have a way to import a whole directory so the best solution is use CopyWebpackPlugin to copy the draco decoding directory on builds in both dev/prod and link to the path statically.

   new CopyPlugin([
      {
        from: path.resolve(__dirname, "./src/js/vendor/draco"),
        to: "js/vendor/draco"
      }
    ])

Once both loaders have been instantiated; pass the draco loader to be used internally by the gltf loader via the .setDRACOLoader() method. Now you may load the model normally.

  loader = new GLTFLoader(manager);
  dracoLoader = new DRACOLoader();
  dracoLoader.setDecoderPath(dracoDecodePath);
  loader.setDRACOLoader(dracoLoader);

Adding a texture to a loaded 3D model

In order to apply your own custom textures to your loaded models you first need to create a new instance of TextureLoader() and pass in your image. In order to correctly orient the texture on a .gltf model

texture = new THREE.TextureLoader().load(modelTexture);
// these settings are needed to correctly apply a texture to a .gLTF model
texture.encoding = THREE.sRGBEncoding;
texture.flipY = false;
texture.wrapS = THREE.RepeatWrapping;
texture.wrapT = THREE.RepeatWrapping;

Read more

Once the .gltf is loaded we use Object3D's Traverse method that takes a callback and executes it on all of the model's descendants. We specifically look at each descendant and if it is a mesh we change the map and metalness property of MeshStandardMaterial

gltf.scene.traverse(function(child) {
  if (child instanceof THREE.Mesh) {
    //child.material is an instance of MeshStandardMaterial
    child.material.map = texture;
    child.material.metalness = 1;
  }
});

Since three.js doesn't have a native particle system implementation I included this particle library as good starting point for learning particles. This library is rather dated and a rewrite was in the works at one point... Running the engine will produce console warnings similar to

THREE.BufferAttribute: .dynamic has been deprecated. Use .usage instead

but the core functionality of the particle system still works great. This library was intended to be included after three.js as a script tag so that the THREE namespace would be in the global scope. This works well for the script tags, but the npm package/build of SPE doesn't work as Three is no longer in the global scope.

To solve this I just imported three into SPE.js and used ES2015 syntax to export the SPE class. So the module version of this library that works is located in src\js\vendor\SPE.js. This is the only file you need so you may remove the NPM dependency from package.json.

The library has an excellent API and documentation and the example particle stream in this boilerplate is taken from this example.

That being said the library is open source and desperately in need a of ES6 rewrite if anyone wants to contribute.

Learning Resources

📚

three.js

  • Threejs Resources Page
  • Threejs in browser editor: Online app to experiment with Threejs
  • Stanford 3D Scanning Repository: Free 3D models to experiment with
  • Threejs loader: Online app where you can test your glTF, FBX and dae 3D models.
  • Gltf Viewer: Online app where you can upload .glTF files and either convert them to .glb files or compress them with draco compression.
  • Discover Threejs: Good beginner resource and introduction to setting up a Threejs scene written by one of the libraries main contributors. (Not finished)
  • Sketchfab: Selection of free and paid 3D models in many formats. Models are usually licensed with Attribution 4.0 which means you are free to adapt and share the model as long as you give credit.
  • Google poly: Another curated selection of free 3D models available on a wide variety of formats.
  • Turbosquid: Collection of paid and free 3D models to experiment with.
  • Threejs fundamentals: Excellent (if not one of the only) resource to learn modern threejs. Topics range from beginner to advanced.

webpack

Credits

📑

If there is something you feel you can explain better, or other fixes to this project feel free to do a PR.

threejs-es6-webpack-barebones-boilerplate's People

Contributors

dependabot[bot] avatar ethanny2 avatar weiserhei avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

threejs-es6-webpack-barebones-boilerplate's Issues

npm install code 1

That’s what I get following your 3rd step of installation:

npm WARN old lockfile 
npm WARN old lockfile The package-lock.json file was created with an old version of npm,
npm WARN old lockfile so supplemental metadata must be fetched from the registry.
npm WARN old lockfile 
npm WARN old lockfile This is a one-time fix-up, please be patient...
npm WARN old lockfile 
npm WARN deprecated [email protected]: Please update to ini >=1.3.6 to avoid a prototype pollution issue
npm WARN deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated
npm WARN deprecated [email protected]: this library is no longer supported
npm WARN deprecated [email protected]: "Please update to latest v2.3 or v2.2"
npm WARN deprecated [email protected]: https://github.com/lydell/resolve-url#deprecated
npm WARN deprecated [email protected]: See https://github.com/lydell/source-map-url#deprecated
npm WARN deprecated [email protected]: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated [email protected]: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated [email protected]: This loader has been deprecated. Please use eslint-webpack-plugin
npm WARN deprecated [email protected]: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.
npm WARN deprecated [email protected]: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
npm WARN deprecated [email protected]: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated [email protected]: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.
npm WARN deprecated [email protected]: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
npm WARN deprecated [email protected]: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated [email protected]: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated [email protected]: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated [email protected]: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated [email protected]: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated [email protected]: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated [email protected]: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
npm WARN deprecated [email protected]: 3.x is no longer supported
npm WARN deprecated [email protected]: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated [email protected]: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated [email protected]: See https://github.com/lydell/source-map-resolve#deprecated
npm WARN deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142
npm WARN deprecated [email protected]: This SVGO version is no longer supported. Upgrade to v2.x.x.
npm WARN deprecated [email protected]: This version of tar is no longer supported, and will not receive security updates. Please upgrade asap.
npm WARN deprecated [email protected]: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.
npm ERR! code 1
npm ERR! path /Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-sass
npm ERR! command failed
npm ERR! command sh -c node scripts/build.js
npm ERR! Building: /usr/local/bin/node /Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-gyp/bin/node-gyp.js rebuild --verbose --libsass_ext= --libsass_cflags= --libsass_ldflags= --libsass_library=
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp verb cli [
npm ERR! gyp verb cli   '/usr/local/bin/node',
npm ERR! gyp verb cli   '/Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-gyp/bin/node-gyp.js',
npm ERR! gyp verb cli   'rebuild',
npm ERR! gyp verb cli   '--verbose',
npm ERR! gyp verb cli   '--libsass_ext=',
npm ERR! gyp verb cli   '--libsass_cflags=',
npm ERR! gyp verb cli   '--libsass_ldflags=',
npm ERR! gyp verb cli   '--libsass_library='
npm ERR! gyp verb cli ]
npm ERR! gyp info using [email protected]
npm ERR! gyp info using [email protected] | darwin | x64
npm ERR! gyp verb command rebuild []
npm ERR! gyp verb command clean []
npm ERR! gyp verb clean removing "build" directory
npm ERR! gyp verb command configure []
npm ERR! gyp verb check python checking for Python executable "python2" in the PATH
npm ERR! gyp verb `which` succeeded python2 /usr/bin/python2
npm ERR! gyp verb check python version `/usr/bin/python2 -c "import sys; print "2.7.18
npm ERR! gyp verb check python version .%s.%s" % sys.version_info[:3];"` returned: %j
npm ERR! gyp verb get node dir no --target version specified, falling back to host node version: 16.13.1
npm ERR! gyp verb command install [ '16.13.1' ]
npm ERR! gyp verb install input version string "16.13.1"
npm ERR! gyp verb install installing version: 16.13.1
npm ERR! gyp verb install --ensure was passed, so won't reinstall if already installed
npm ERR! gyp verb install version is already installed, need to check "installVersion"
npm ERR! gyp verb got "installVersion" 9
npm ERR! gyp verb needs "installVersion" 9
npm ERR! gyp verb install version is good
npm ERR! gyp verb get node dir target node version installed: 16.13.1
npm ERR! gyp verb build dir attempting to create "build" dir: /Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-sass/build
npm ERR! gyp verb build dir "build" dir needed to be created? /Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-sass/build
npm ERR! gyp verb build/config.gypi creating config file
npm ERR! gyp verb build/config.gypi writing out config file: /Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-sass/build/config.gypi
npm ERR! (node:6898) [DEP0150] DeprecationWarning: Setting process.config is deprecated. In the future the property will be read-only.
npm ERR! (Use `node --trace-deprecation ...` to show where the warning was created)
npm ERR! gyp verb config.gypi checking for gypi file: /Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-sass/config.gypi
npm ERR! gyp verb common.gypi checking for gypi file: /Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-sass/common.gypi
npm ERR! gyp verb gyp gyp format was not specified; forcing "make"
npm ERR! gyp info spawn /usr/bin/python2
npm ERR! gyp info spawn args [
npm ERR! gyp info spawn args   '/Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-gyp/gyp/gyp_main.py',
npm ERR! gyp info spawn args   'binding.gyp',
npm ERR! gyp info spawn args   '-f',
npm ERR! gyp info spawn args   'make',
npm ERR! gyp info spawn args   '-I',
npm ERR! gyp info spawn args   '/Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-sass/build/config.gypi',
npm ERR! gyp info spawn args   '-I',
npm ERR! gyp info spawn args   '/Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-gyp/addon.gypi',
npm ERR! gyp info spawn args   '-I',
npm ERR! gyp info spawn args   '/Users/trzcinski/.node-gyp/16.13.1/include/node/common.gypi',
npm ERR! gyp info spawn args   '-Dlibrary=shared_library',
npm ERR! gyp info spawn args   '-Dvisibility=default',
npm ERR! gyp info spawn args   '-Dnode_root_dir=/Users/trzcinski/.node-gyp/16.13.1',
npm ERR! gyp info spawn args   '-Dnode_gyp_dir=/Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-gyp',
npm ERR! gyp info spawn args   '-Dnode_lib_file=/Users/trzcinski/.node-gyp/16.13.1/<(target_arch)/node.lib',
npm ERR! gyp info spawn args   '-Dmodule_root_dir=/Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-sass',
npm ERR! gyp info spawn args   '-Dnode_engine=v8',
npm ERR! gyp info spawn args   '--depth=.',
npm ERR! gyp info spawn args   '--no-parallel',
npm ERR! gyp info spawn args   '--generator-output',
npm ERR! gyp info spawn args   'build',
npm ERR! gyp info spawn args   '-Goutput_dir=.'
npm ERR! gyp info spawn args ]
npm ERR! No receipt for 'com.apple.pkg.CLTools_Executables' found at '/'.
npm ERR! 
npm ERR! No receipt for 'com.apple.pkg.DeveloperToolsCLILeo' found at '/'.
npm ERR! 
npm ERR! No receipt for 'com.apple.pkg.DeveloperToolsCLI' found at '/'.
npm ERR! 
npm ERR! gyp: No Xcode or CLT version detected!
npm ERR! gyp ERR! configure error 
npm ERR! gyp ERR! stack Error: `gyp` failed with exit code: 1
npm ERR! gyp ERR! stack     at ChildProcess.onCpExit (/Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-gyp/lib/configure.js:345:16)
npm ERR! gyp ERR! stack     at ChildProcess.emit (node:events:390:28)
npm ERR! gyp ERR! stack     at Process.ChildProcess._handle.onexit (node:internal/child_process:290:12)
npm ERR! gyp ERR! System Darwin 21.2.0
npm ERR! gyp ERR! command "/usr/local/bin/node" "/Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
npm ERR! gyp ERR! cwd /Applications/MAMP/htdocs/threejs-webpack-test/your-project/node_modules/node-sass
npm ERR! gyp ERR! node -v v16.13.1
npm ERR! gyp ERR! node-gyp -v v3.8.0
npm ERR! gyp ERR! not ok 
npm ERR! Build failed with error code: 1

npm ERR! A complete log of this run can be found in:

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.