Search
How to Use window.crypto in Node.js
27.10.2022
I’ve been writing a bunch of jest tests recently for libraries that use the underlying window.crypto methods like getRandomValues() and window.crypto.subtle key management methods. One problem I run into is that the window.crypto object isn’t available, so I need to shim it. To use...
When Should You Run Your Own Blockchain Node?
27.8.2022
Svyatoslav Dorofeev is the CEO of the technology company TheWatch. __________
When we talk about crypto and blockchain, one of the first things that come to mind is decentralization. We love the idea of a system that works without any central authority or a single point of failure. But as it turns...
Bitcoin Price Rally Failed to Attract Active Users, Exchange Flows Reveals 'Lackluster' Demand – Glassnode
24.8.2022
The recent uptrend for bitcoin (BTC) did not attract a new wave of active users, while exchange flows also suggest a “relatively lacklustre influx of capital,” the on-chain analytics firm Glassnode has found....
Read More: Bitcoin Price Rally Failed to Attract Active Users, Exchange Flows Reveals...
Specify Node Versions with .nvmrc
9.8.2022
I’ve heavily promoted nvm, a Node.js version manager, over the years. Having a tool to manage multiple versions of a language interpreter has been so useful, especially due to the complexity of Node.js package management. One tip I like to give new developers is adding a .nvmrc file to their...
Accuweather Collaborates With API3 in Order to Provide Blockchain-Powered Weather Data
1.6.2022
On June 1, the American media company that provides commercial weather forecasts, Accuweather, announced it is tethering weather data to blockchain technology by hosting an API3 Airnode. The company revealed that it is collaborating with blockchain oracle provider API3 and Web API operators will...
What the Heck is Node?
20.1.2022
(This is a sponsored post.)
Here’s what you need to know about Node.js (or simply Node) and how it relates to npm right off the bat:
Node is JavaScript, but as a server-side language.
This is possible because of
…
What the Heck is Node? originally published on CSS-Tricks. You should...
Argentina-Based Mobile Wallet App Belo Adds Lightning Network Support via Opennode
11.1.2022
On Monday, January 10, the Argentina-based mobile wallet company Belo announced that the platform has added support for the Lightning Network by partnering with the bitcoin payment processor and infrastructure provider Opennode. The mobile application allows users to trade and transact in pesos...
Command Line trash
24.10.2021
One of the first commands you learn when experimenting with command line is rm, the utility for deleting files and directories. Deletion is a core computer UI operation but operating systems use a “Trash” paradigm, where files are stored before truly deleted. With the rm utility...
Web Streams Everywhere (and Fetch for Node.js)
29.9.2021
Chrome developer advocate Jake Archibald called 2016 “the year of web streams.” Clearly, his prediction was somewhat premature. The Streams Standard was announced back in 2014. It’s taken a while, but there’s now a consistent streaming API implemented …
The post Web Streams...
How to Implement Logging in a Node.js Application With Pino-logger
22.9.2021
Logging, on its own, is a key aspect of any application. Logging helps developers comprehend what it is that their code is doing. It also helps save developers hours of debugging work. This tutorial is about implementing logging in a …
The post How to Implement Logging in a Node.js...
Set a Default Node Version with nvm
9.8.2021
As I’ve shown you in the past, nvm an excellent utility for switching between Node.js versions. Whether your host machine or CI, building and testing your apps on different Node versions is a necessity. I’ve recently found a few nvm commands that I found really useful during local...
GitHub Explains the Open Graph Images
29.7.2021
An explanation of those new GitHub social media images:
[…] our custom Open Graph image service is a little Node.js app that uses the GitHub GraphQL API to collect data, generates some HTML from a template, and pipes it to 
…
The post GitHub Explains the Open Graph Images...
Oracle Service API3 Partners With the Open Banking Project, Plans to Connect 400 Banking APIs to Blockchain
20.4.2021
On Monday, the oracle provider API3 announced a ten-year partnership with the Open Bank Project in order to connect more than 400 banking APIs to blockchain smart contracts using API3’s Airnode. The collaboration between API3 and the Open Bank Project aims to bridge conventional banking with...
The Deno Company
2.4.2021
I’m sure a lot of you are paying attention to Deno anyway, the next-gen JavaScript-on-the-sever project from Node creator Ryan Dahl, especially after dropping all these candid regrets about what happened in Node. But perhaps your paying more attention now …
The post The Deno Company...
Bitcoin Inflows in Past 30 Days Exceed BTC’s Total Market Cap in 2017 and 2019, Says Report
28.1.2021
The total amount of capital inflows into bitcoin during the 30 days to Jan. 25 are as high as the entire bitcoin market capitalization in September 2017 and early 2019, according to new data from Glassnode. Glassnode co-founder and CTO Rafael Schultze-Kraft tweeted that cash inflows into bitcoin...
Začněte používat ECMAScript moduly v Node.js už dnes
27.1.2021
Proč jsou ECMAScript moduly lepší než CommonJS? Už nastal ten správný čas přepsat všechny své NPM balíčky na ECMAScript moduly?
Začněte používat ECMAScript moduly v Node.js už dnes
27.1.2021
Proč jsou ECMAScript moduly lepší než CommonJS? Už nastal ten správný čas přepsat všechny své NPM balíčky na ECMAScript moduly?
T-Systems and Validation Capital Partner With Flow Blockchain
13.1.2021
PRESS RELEASE. January 13, 2021 – T-Systems MMS, a subsidiary of the largest telecommunications provider in Europe, Deutsche Telekom, announces today a partnership with Flow blockchain developed by Dapper Labs, the company behind CryptoKitties and NBA Top Shot. T-Systems’ flagship...
CoinDesk Is Spinning Up an Ethereum 2.0 Node. Here’s How to Follow Our Journey
24.11.2020
CoinDesk just snagged a front-row seat to a seminal event in the crypto industry. Ticket price: 32 ETH
Node isConnected
13.11.2020
Every so often I discover a property in JavaScript objects that I didn’t know existed, oftentimes using another trick to accomplish the same functionality. One such property I just learned about was isConnected, a node property that attached to a context (i.e. document). Here’s how...