From bab22417d4259210946d0ac90ae22e41a7d0cab6 Mon Sep 17 00:00:00 2001 From: Mathias Schopmans Date: Fri, 18 Aug 2023 07:40:36 +0200 Subject: [PATCH] docs: add deno to ASSESS --- radar/2023-09-01/deno.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 radar/2023-09-01/deno.md diff --git a/radar/2023-09-01/deno.md b/radar/2023-09-01/deno.md new file mode 100644 index 0000000..76fbd9d --- /dev/null +++ b/radar/2023-09-01/deno.md @@ -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. \ No newline at end of file