Future Studio Tutorials

Public tutorial on Thursday. Wednesday is only.

Get Number of Seconds Since Epoch in JavaScript

Working with dates and times in JavaScript can be cumbersome. The Date class provides methods to interact with dates and times. Usually, you need to put more effort into calculating the value that you’re interested in. {{outline}} In various situations, it’s favorable to calculate the seconds since epoch …

Continue Reading

Node.js — Write a JSON Object to a File

When working on a new feature or app idea, storing data on the file system can be a good solution. You can skip the database setup and save JSON to a file instead. {{outline}} Write JSON to File JavaScript comes with the JSON class that lets you serialize an object …

Continue Reading

learn hapi — JWT Logout (Part 1/2)

Authenticating users in web applications or APIs has different approaches. Invalidating a user’s server-side session or an authentication-related cookie is in your full control. With JSON web tokens (JWTs), you need to extend your platform with a custom logout handling ensuring to invalidate an active JWT. Because there’s …

Continue Reading

Node.js — Filter Data in Streams

Using streams in Node.js is a powerful mechanism to process data. Especially when working with large data sets where you might want to filter chunks that don’t match a given criteria. {{outline}} Example: Loading Lines From File to Database Imagine the following example: you want to load a …

Continue Reading

learn hapi — How to Revoke a JWT

JSON web tokens (JWT) are a convenient way to authenticate users on your platform. The simplest version of handling JWT authentication looks like this: creating a token by signing it with a secret key that is only known to your application. Once created, you send off the compact form of …

Continue Reading

Explore the Library

Find interesting tutorials and solutions for your problems.