An open API service indexing awesome lists of open source software.

https://github.com/mage/mage-sdk-js

MAGE client SDK for JavaScript (ES5)
https://github.com/mage/mage-sdk-js

game-development javascript mage sdk

Last synced: about 1 year ago
JSON representation

MAGE client SDK for JavaScript (ES5)

Awesome Lists containing this project

README

          

# MAGE SDK (Web)

This is the official [MAGE](https://www.npmjs.com/package/mage) SDK for web browsers.

- Completely written in ES5 to be compatible with the widest range of browsers.
- Uses CommonJS (`require()` calls and `module.exports`).

## Compatibility

This version of `mage-sdk-js` works with **MAGE >=1.1.0**.

## Installation

```shell
npm install --save mage-sdk-js
```

You can install some official MAGE client modules (client-side counterparts to server modules) via NPM as well:

```shell
npm install --save mage-sdk-js.session
npm install --save mage-sdk-js.logger
npm install --save mage-sdk-js.time
npm install --save mage-sdk-js.archivist
```

You can find all available MAGE client modules on [NPM](https://www.npmjs.com/search?q=mage-sdk-js).

## Read more

- [Using the MAGE Web SDK](./docs)
- [MAGE documentation](https://mage.github.io/mage/)