Skip to main content

Tooling

Learn how to use Material's included npm scripts to build our documentation, compile source code, and more.

Getting started

Material uses NPM scripts for its build system. Our package.json includes convenient methods for working with the framework.

To use our build system, you’ll need a copy of Material’s source code and Node. Follow these steps and you should be ready to rock:

  1. Download and install Node.js, which we use to manage our dependencies. Then navigate to the root /daemonite-material directory and run npm install to install local dependencies.
  2. Install Ruby, install Bundler with gem install bundler, and then run bundle install. This will install all Ruby dependencies, such as Jekyll and plugins.
    • Windows users: Read this guide to get Jekyll up and running without problems.

When completed, you’ll be able to run the various commands provided from the command line. Our package.json includes the following commands and tasks:

Task Description
npm run dist npm run dist creates the /css and /js directories with compiled files.
npm run docs Builds CSS and JavaScript for docs. You can then run the documentation locally via npm run docs-serve.

Run npm run to see all the npm scripts.

Local documentation

Running our documentation locally requires the use of Jekyll, a decently flexible static site generator that provides us: basic includes, Markdown-based files, templates, and more. Here’s how to get it started:

  1. Run through the getting started guide above to install Jekyll and other Ruby dependencies with bundle install.
  2. From the root /daemonite-material directory, run npm run docs-serve in the command line.
  3. Open http://localhost:9999/material in your browser, and voilà.

PostCSS

Material uses Autoprefixer (included in our build process) to automatically add vendor prefixes to some CSS properties at build time. Doing so saves us time and code by allowing us to write key parts of our CSS a single time while eliminating the need for vendor mixins.

We maintain the list of browsers supported in our package.json file.