1
This repository has been archived on 2025-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
2025-03-15 20:31:03 +01:00
2025-03-15 20:31:03 +01:00
2025-03-15 20:17:29 +01:00
2025-03-15 20:17:29 +01:00
2025-03-15 20:20:41 +01:00
2025-03-15 20:20:41 +01:00
2025-03-15 20:20:41 +01:00

web-helper

A collection of little node.js scripts, I have created over the time. Hopefully this helps you. I try to comment the code as much as possible, if you have any questions or suggestions, feel free to leave a comment here in the issue section and I try to answer as much as possible.

1. Image Helpers

A collection of utilities and helper utilities to work with images.
Go to Image Helpers

1.1 Compare Images Helper

This is a little tool to compare images in two different folders, to determine if they are the same or not.
Go to Compare Images Helper

1.2 Create Placeholder Helper (Simple Version)

This is a little tool, which copies a placeholder image for an array of strings containing the new filename. This is the simple version with no other dependencies, there is also an advanced version using an excel file.
Go to Create Placeholder Helper (Simple Version)




FAQ

The following questions are some of the most common questions and I wanted to provide some explaination before hand.

1. Why do most tools use the sync version of a node function instead of the async version?

Naturally you want to use the async version of the node function because you can distribute heavy workloads more efficient. However if you work with a compare function or a copy function, you most likely want to know if something happened before the program completes. In this case it is better to use the sync version of the node function, so the program continues after the function completes. Don't get me wrong, I love promises and async functions, but often times it is better to wait for them to complete.




MORE COMING SOON

Description
A collection of node.js scripts to help on every day webdev problems
Readme GPL-3.0 88 KiB
Languages
JavaScript 100%