2.0.2 • Published 4 years ago

wandboxjs v2.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

wandboxjs

Wandbox API Wrapper for Node.js TS Rewrite

Installation

Just type npm i wandboxjs and you are ready to go!

Usage

ES5 Syntax

const { compiler } = require("wandboxjs");
compiler("python", "print(1)").then((result) => console.log(result.result)); // -> 1

ES6 Syntax

import { compiler } from "wandboxjs";

const main = async () => {
  result = await compiler("python", "print(1)");

  console.log(result.result); // -> 1
};

main();
2.0.2

4 years ago

2.0.1

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

2.0.0

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago