Package Exports
- deno-cli
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (deno-cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Deno-cli
Install
With NPM:
npm install -g deno-cliWith Yarn:
yarn global add deno-cliCommands
..>dm --help
Usage: index [options] [command]
Options:
-V, --version output the version number
-h, --help display help for command
Commands:
init Initiate a deno project
run Run your deno project
help [command] display help for commandinit
Create a workspace with two files: index.ts and config.json.
...>dm init
Creating index file and deno run config...
success Saved config file.
success Saved index file.Config.json contains the following fields:
{
"name":"",
"version":"1.0.0",
"main" : "index.ts",
"permissions":[
"--allow-net"
],
"author" : "",
}In this file you should add all the permissions that you need.
Index.ts
console.log("Hello world!");run
Run the main file for your deno project based on the permissions at config.json
...>dm run
Executing: deno run --allow-net index.ts
Hello world!