SuspiciousLookingOwl / transformice.js

NodeJs Client for Transformice with full Typescript support.

Home Page:https://transformice-js.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Transformice.js (WIP)

This library is no longer maintained, check out cheeseformice/transformice.js for a mantained work

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", );

About

NodeJs Client for Transformice with full Typescript support.

https://transformice-js.netlify.app/


Languages

Language:TypeScript 92.1%Language:JavaScript 5.9%Language:CSS 1.9%Language:Shell 0.1%