2.0.2 • Published 3 years ago

wandboxjs v2.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 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

3 years ago

2.0.1

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

2.0.0

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago