Introduction to the Runtime and Standard Library
Explore the Deno runtime and standard library to understand its core APIs and namespaces. Learn to build small command-line tools and web servers while interacting with the filesystem, using buffers, and creating JSON APIs. Gain foundational skills to advance in Deno web development.
We'll cover the following...
We'll cover the following...
What we’ll learn
Now that we know enough about Deno, we’re in a good place to write a few real applications with it. In this chapter, we’ll use no libraries because its primary purpose is to present the runtime APIs and the standard library.
We’ll write small CLI utilities, web servers, and more, always leveraging the power of what the official Deno team ...