Comparing version 0.0.0 to 0.0.1
@@ -5,4 +5,8 @@ # deno Change Log | ||
## [0.0.1] - 2018-5-31 | ||
## [0.0.1] - April 27th, 2019 | ||
* Variables implemented. | ||
## [0.0.0] - 2018-5-31 | ||
Released. | ||
@@ -9,0 +13,0 @@ |
@@ -10,4 +10,4 @@ 'use strict'; | ||
; | ||
module.exports = ''; | ||
const Deno = require('./variables'); | ||
module.exports = Object.assign(Deno); |
@@ -12,3 +12,3 @@ { | ||
"name": "deno", | ||
"version": "0.0.0", | ||
"version": "0.0.1", | ||
"main": "index.js", | ||
@@ -15,0 +15,0 @@ "keywords": [ |
@@ -6,2 +6,37 @@ # deno | ||
*Deno* is next generation of Node.js in plan. This module is designed as a bridge from Node.js to Deno. | ||
This module is designed as a bridge from Node.js to [*Deno*][^deno]. | ||
What is [*Deno*][^deno]? According to [deno.land](https://deno.land/manual.html): | ||
> A secure JavaScript/TypeScript runtime ... | ||
## 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. | ||
* Variables | ||
* args | ||
* build | ||
* execPath | ||
* execPath | ||
* pid | ||
* platform | ||
* stderr | ||
* stdin | ||
* stdout | ||
* version | ||
## Reference | ||
* [Deno Manual](https://deno.land/manual.html) | ||
* [TypeScript Deno API](https://deno.land/typedoc/index.html) | ||
[^deno]: https://deno.land/ |
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
2918
49
41
1