https://github.com/thecodeholic/top-5-features-of-deno
Example package which demonstrates top 5 features of Deno
https://github.com/thecodeholic/top-5-features-of-deno
deno deno-examples deno-features denofeatures top-5-deno-features
Last synced: 3 months ago
JSON representation
Example package which demonstrates top 5 features of Deno
- Host: GitHub
- URL: https://github.com/thecodeholic/top-5-features-of-deno
- Owner: thecodeholic
- Created: 2020-05-15T08:16:14.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-15T08:25:04.000Z (about 5 years ago)
- Last Synced: 2025-04-10T00:53:39.547Z (3 months ago)
- Topics: deno, deno-examples, deno-features, denofeatures, top-5-deno-features
- Language: JavaScript
- Homepage: https://youtu.be/cQQyYQrJzHU
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Top 5 Features of Deno
[Deno](https://deno.land/) is a simple, modern and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust.
The code is written for [youtube video](https://youtu.be/cQQyYQrJzHU).
### Installation
1. You need to have Deno installed locally in order to run these files. Deno installation [instructions](https://deno.land/#installation).
2. Clone the project and navigate to project folder using terminal.### Feature 1: Builtin typescript support
```
deno run feature1.ts
```### Feature 2: Import from URL
```
deno run feature2.js
```### Feature 3: Top level await
```
deno run feature3.js
```### Feature 4: Security
```
deno run --allow-read feature4.js
```### Feature 5: Browser API support
```
deno run --allow-net feature5.js
```### All 5 features in single file.
```
deno run --allow-net allfeatures.ts
```