gamemoney-commonjs
TypeScript icon, indicating that this package has built-in type declarations

6.0.2 • Public • Published

GameMoney

GameMoney API wrapper for Node.js

Full API documentation here

Installation

$ npm install gamemoney

Usage

Initialization

import fs from 'fs'
import GameMoney from 'gamemoney'

const gm = new GameMoney({
	project: 42,
	hmacPrivateKey: 'test',

	// Optional. But to make checkouts must be specified
	rsaPrivateKey: {
		key: fs.readFileSync('./private.pem').toString(),
		passphrase: '123' // Optional
	},

	// OR:
	// rsaPrivateKey: Buffer.from(
	// 	process.env.GM_RSA_PRIVATE_KEY ?? '',
	// 	'base64',
	// )
})

Examples

See examples in src/examples directory

/gamemoney-commonjs/

    Package Sidebar

    Install

    npm i gamemoney-commonjs

    Weekly Downloads

    8

    Version

    6.0.2

    License

    MIT

    Unpacked Size

    28.6 kB

    Total Files

    7

    Last publish

    Collaborators

    • herenickname