Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

deno

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deno - npm Package Compare versions

Comparing version 0.0.0 to 0.0.1

variables.js

6

CHANGELOG.md

@@ -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 @@

6

index.js

@@ -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/
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc