Initial Setup

Before setting up Fusion please first create your application and download the latest files from your profile.

Original Package / Developer Github

First you must install our class from npm.

Installing Fusion From npm.

  1. Register for free at https://fusionapi.dev/

  2. Install using npm.

npm i fusionapi

Linking Your Application

Enter your newly created account on FusionAPI and create a new application by clicking on Create App.

Enter a application name with no spaces and a description of your app.

const { FusionApp } = require("fusionapi")
var  App = new  FusionApp("APPID")

This is how you initialize the app. You need to specify the application ID this can be grabbed from the application panel.

Last updated