To print this out we can use the IO.inspect function for pretty printing: IO.inspect(book_lengths) [17, 12, 9, 9, 21] Elixir’s collection types We’ve already…
intro
-
-
My previous article introduced Ktor and some of its basic features for building web applications. Now, we’ll expand the example application developed in that article…
-
Now, if we want to generate more sophisticated content from that endpoint, like a list of quotes and their authors, we can switch to…
-
Once you’ve accepted those, you’ll be able to visit your running application using the provided URL: You can view console output in the Debug…
-
MobileMobile AppsNews
Intro to Express.js: Advanced programming with templates, data persistence, and forms
insert.run(‘Obi Wan Kenobi’, “That’s no moon!” ); insert.run(‘The Terminator’, ‘Hasta la vista, baby.’); insert.run(“Captain Ahab”, “There she blows!”); Now let’s create a way to…
-
Express.js is the most-used HTTP server and middleware platform for Node.js. Let’s take a hands-on look at what it brings to the table. Request handling…