Articles tagged in: Node.js



JavaScript — How to Check if a Value is a ULID

We’re using Universally Unique Lexicographically Sortable Identifier (ULID) in our projects to identify entities. ULIDs are unique, sortable identifiers similar to UUIDs. The claim that ULIDs are better than UUIDs is that they are sortable, keeping a monotonic sort order, encoded as a 26-character string (36 characters for UUIDs) …

Continue Reading

JavaScript — How to JSON Stringify Errors

You can create a JSON string from anything in JavaScript using the JSON.stringify(anything) method. However, the resulting JSON string may not contain the expected values. For example, if you’re JSON serializing a JavaScript error, you’ll notice that its JSON string doesn’t contain any properties. JavaScript …

Continue Reading
Page 1 of 45

Explore the Library

Find interesting tutorials and solutions for your problems.