An open API service indexing awesome lists of open source software.

https://github.com/thefrontside/node-deno

Invoke Deno commands from within Node.
https://github.com/thefrontside/node-deno

Last synced: 11 months ago
JSON representation

Invoke Deno commands from within Node.

Awesome Lists containing this project

README

          

# node-deno

Node API for invoking the Deno command line.

## Examples

``` javascript
import { deno } from 'node-deno';

let result = await deno("--version");

console.log(result.stdout);
//logs:
//deno 1.26.0 (release, aarch64-apple-darwin)
//v8 10.7.193.3
//typescript 4.8.3
```