Start programming in Deno, an alternative to Node.js

Get to know Deno's CLI, permissions, and how to write a Hello World program.
46 readers like this.
Woman sitting in front of her laptop

kris krüg

Deno is a simple, modern, and secure runtime for JavaScript and TypeScript. It is an open source project created by Ryan Dahl, who developed Node.js. In Try Deno as an alternative to Node.js, I introduced Deno's features and explained how to install and run it.

Here, I will help you quickly get started with Deno by explaining:

  • Deno's command-line interface (CLI)
  • Permissions in Deno
  • Hello World in Deno

Deno's CLI

Deno is a command-line program, and mastering its CLI can help you use its features. For example, you can type deno help to see all the help options from 25,000 feet.

Watch this video to learn more about the tricks that Deno's CLI can do:

Permissions in Deno

When Ryan Dahl created Node.js, it proved to be wildly popular among not only web developers but programmers from many industries and hobbies. However, there are critiques about its security model. Ryan has designed Deno with security in mind, so a Deno module does not have file, network, or environment access unless you specifically enable it.

For example, in the following script, hello-deno.js is given only allow-read access:

deno run --allow-read hello-deno.ts

Permission might not be an easy subject to grasp, but Deno makes it simpler. If you are interested in learning more about how Deno handles permissions, please watch this video.

Say "Hello, World" in Deno

When learning a new programming language, it's common to start by writing a "hello, world" program. Here's how to do that in Deno.

Deno supports JavaScript and TypeScript. In JavaScript, create a file named hello-world.js with:

/**
 * hello-world.js
 */

console.log("Hello, World");

In TypeScript, the file contents will be exactly the same, but the file has a different extension.

/**
 * hello-world.ts
 */

console.log("Hello, World");

However, as the script gets more complicated, you will begin to see some differences. This video offers a more complex example of how you can say "hello, world" in Deno:

That's it for now! I'll share more articles covering more advanced Deno uses on Opensource.com in the future.

What to read next
Tags
User profile image.
Bryant Jimin Son is an Octocat, which not official title but likes to be called that way, at GitHub, a company widely known for hosting most open source projects in the world. At work, he is exploring different git technology, GitHub Actions, GitHub security, etc. Previously, he was a Senior Consultant at Red Hat, a technology company known for its Linux server and opensource contributions.

Comments are closed.

Creative Commons LicenseThis work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.