transformice.js
TypeScript icon, indicating that this package has built-in type declarations

1.0.0-beta.1 • Public • Published

Transformice.js (WIP)

NodeJs Client for Transformice with full Typescript support.

Read the docs

Development

Clone the repository:

git clone https://github.com/SuspiciousLookingOwl/transformice.js

Install dependencies:

npm i

Watch and compile files:

npm run dev

Example

const { Client, enums } = require("transformice.js");

const client = new Client("username", "password", {
	language: enums.languages.en
});

client.on("roomMessage", (message) => {
	if (client.name === message.author.name) return;
	client.sendRoomMessage(message.author.look);
});

client.run("tfm_id", "token", );

Readme

Keywords

Package Sidebar

Install

npm i transformice.js

Weekly Downloads

2

Version

1.0.0-beta.1

License

MIT

Unpacked Size

137 kB

Total Files

58

Last publish

Collaborators

  • vincentjonathan
  • suspiciouslookingowl