Skip to content

Installation

scottxu edited this page Jan 12, 2019 · 4 revisions

You can click here to download latest release version. You also can install NPM package using following commands.

> npm install openbse

If you want rebuild BulletScreenEngine, execute the following command.

> cd node_modules/openbse
> npm install
> npm run build

You need to installed gulp globally before building it.

> npm install --global gulp

Tips

Before using NPM, you need to install NodeJS. The installation method is as follows:

Mac:

Option 1: Homebrew

After installing homebrew

> brew install node

Option 2: Git

> git clone git://github.com/nodejs/node.git
> cd node
> ./configure
> make
> sudo make install

Linux:

Install via PPA

Although Chris Lea's PPA was once the best way to install node, it is now somewhat out of date.
The recommended path to install NodeJS is using Joyent's package manager guide.

Ubuntu

> curl --silent --location https://deb.nodesource.com/setup_6.x | sudo bash -
> sudo apt-get install --yes nodejs

Debian

> apt-get install curl
> curl --silent --location https://deb.nodesource.com/setup_6.x | bash -
> apt-get install --yes nodejs

Red Hat

> curl --silent --location https://rpm.nodesource.com/setup | bash -
> yum -y install nodejs

Windows:

Install the exe

Download the NodeJS executable.

Clone this wiki locally