Deno
Deno is a JavaScript/TypeScript runtime with secure defaults and a great developer experience. It's built on V8, Rust, and Tokio.
- Secure by default. No file, network, or environment access (unless explicitly enabled).
- Supports TypeScript out of the box.
- Ships a single executable (deno).
- Has built in utilities like a dependency inspector (deno info) and a code formatter (deno fmt).
- Has a set of reviewed (audited) standard modules that are guaranteed to work with Deno.
- Scripts can be bundled into a single javascript file.
Here are 387 public repositories matching this topic...
-
Updated
May 16, 2020 - TypeScript
Issue Type
- Bug Report
- Feature Request
- Other
Expected
$ command subcommand --help
Subcommand is used to... <---- this would be nice to be able to add
Usage:
$ command subcommand
Options:
-v, --version Display version number
-h, --help Display this messageActual
$ command subcommand --help
Usage:
$ command-
Updated
May 16, 2020 - TypeScript
-
Updated
May 14, 2020 - TypeScript
Currently these point to std@v0.38.0 but should be removed and replaced with something else.
see tests/pad.ts, tests/importmap.json and tests/importmap.ts.
Perhaps delay from https://deno.land/std@VERSION/util/async.ts ?
The examples contained with pogo are very basic.
- working with request objects should be demonstrated
- working with path parameters should be demonstrated
import pogo from 'https://deno.land/x/pogo/main.js';
server.router.put('/path/{id}', async (request:pogo.Request) => {
var id:String = request.route.params.id;
});
- working with request body should be demonstrated
Whole documentation is just a README file, better documentation should be provided as documentation page.
Public API should be annotated with JSDoc, so auto generated API reference can be obtained.
-
Updated
May 15, 2020 - Rust
-
Updated
May 14, 2020 - Dockerfile
Description
- Install deno
- Install the extension
- capture the usage with some tool and convert into a gif
- post the screenshot as a comment and once I approve it create the PR
Useful links
-
Updated
Mar 23, 2020 - JavaScript
Atm now-deno uses the latest release but I think it would be good for users to (optionally?) pass a version number for the deno-lambda release to use.
(In the future this will match the deno version.)
-
Updated
May 9, 2020 - TypeScript
-
Updated
May 16, 2020 - TypeScript
-
Updated
Apr 21, 2020 - TypeScript
denon upgrade
A denon upgrade command as an alias for deno install denon -f --allow-read --allow-run https://deno.land/x/denon/denon.ts would be useful. denon upgrade could be able to select version if entered otherwise it would just use latest. This would probably be done with denon upgrade v1.6.0
-
Updated
May 15, 2020 - TypeScript
-
Updated
May 16, 2020 - TypeScript
To have
Denonamespace in the worker, we'll want to provide a map of permissions worker should have. Worker's set of permissions mustn't escalate permissions of parent worker/Deno process.To achieve that a method called
forkshould be added toDenoPermissionsstruct.forkwould take as many parameters as there are fields onDenoPermissionsand return newDenoPermissionsinstance a