deno
Version:
A bridge to Deno.
43 lines (29 loc) • 1.67 kB
Markdown
# deno
__A bridge to Deno.__
[](https://www.npmjs.com/package/deno)
[](https://www.npmjs.com/package/deno)
[](https://www.npmjs.com/package/deno)
> If links in this document not avaiable, please access [README on GitHub](./README.md) directly.
This package is designed to help developers to experience functions of [*Deno*][^deno] in Node.js.
What is [*Deno*][^deno]? According to [deno.land](https://deno.land/manual.html):
> A secure JavaScript/TypeScript runtime ...
ATTENTION: This package is NOT an official distribution of [deno.land](https://deno.land/). It is suggested to access [*Deno*'s homepage][^deno] if you are seeking an official binary. And, I should show my appreciation of [Ryan](https://www.npmjs.com/~ry)'s great work on [*Deno*][^deno].
## Get Started
```javascript
const Deno = require('deno');
// Display build info.
console.log(Deno.build);
```
## API
ATTENTION: Although this module `deno` tries to imitate behaviors of real [*Deno*][^deno], they two are different things.
Here are available features and standard modules:
[view on single page](docs/all.md)
* [variables](docs/variables.md)
* [functions](docs/functions.md)
* [ErrorKind](docs/ErrorKind.md)
* [datetime](docs/datetime.md)
## Reference
* [Deno Manual](https://deno.land/manual.html)
* [TypeScript Deno API](https://deno.land/typedoc/index.html)
* [Ching(YounGoat)'s NPM Packages](https://github.com/YounGoat/articles/blob/master/2019/npm.md)
[^deno]: https://deno.land/