docs: add deno to ASSESS

This commit is contained in:
Mathias Schopmans
2023-08-18 07:40:36 +02:00
committed by Stefan Rotsch
parent 5bb7b89ec3
commit bab22417d4

17
radar/2023-09-01/deno.md Normal file
View File

@@ -0,0 +1,17 @@
---
title: "Deno"
ring: assess
quadrant: languages-and-frameworks
tags: [coding]
---
```ts
> 'node'.split('').sort().join('')
> 'deno'
```
[Deno](https://deno.com/runtime) is a secure, modern JavaScript and TypeScript runtime built on the V8 JavaScript engine. It was developed as a more secure and developer-friendly alternative to Node.js by the core author of node.js, Ryan Dahl.
Deno prioritizes security by default, enforcing strict permissions for file system access, network access, and environment variable usage. It also offers improved performance, thanks to its utilization of the latest JavaScript features and optimizations. Deno supports TypeScript out of the box, allowing developers to take advantage of static type checking and other TypeScript features. It incorporates a built-in module system, reducing dependency conflicts and making module management easier.
With its streamlined developer experience, including a standard library and support for modern language features, Deno offers a compelling option for JavaScript and TypeScript developers.