Node.js Installation

Quickly set up and use ActiveUI with Node.js

Installation & Environment #

Make sure you have downloaded and installed the desired version of ActiveUI following the instructions on Installation

To use ActiveUI with Node.js, make sure the following frameworks are installed:

  • Node.js >= 8.9.4
  • npm >= 3.10.8

Requiring ActiveUI #

To get the ActiveUI Entry point, you can simply import the activeui dependency:

import ActiveUI from 'activeui';

or if you cannot use ECMAScript module syntax, use the CommonJS syntax:

const ActiveUI = require('activeui');