#nodejs
Posts and snippets tagged #nodejs.
rss feed ↗posts
Migrate your Shopify store assets to a new store using File API
Learn how to migrate your assets from an old Shopify store to a new one in a few simple steps. This guide will show you how to retrieve and download your images using GraphQL and Node.js, and upload them to your new store with ease.
How to create an HTTPS server in localhost?
The simplest way to set up an HTTPS server in Nodejs application when developing locally
Simplify your Node.js project with module aliases
Tired of dealing with complex file paths in your Node.js project? Learn how to set up module aliases using TypeScript and module-alias package to simplify your imports and improve your development experience.
How to make HTTP requests in Node.js without installing external libraries
Learn how to make HTTP requests in Node.js without adding unnecessary dependencies to your project using the built-in https module. Follow these simple steps to easily fetch JSON data from external APIs and servers.