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.
- Host: GitHub
- URL: https://github.com/thefrontside/node-deno
- Owner: thefrontside
- Created: 2022-10-05T14:11:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-18T20:00:22.000Z (over 3 years ago)
- Last Synced: 2025-02-21T22:14:48.946Z (over 1 year ago)
- Language: TypeScript
- Size: 64.5 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```