Try GOLD - Free

20 NODE.JS Modules You Need To Know

NET

|

February 2017

Philip Ackermann presents his pick of the Node.js modules that will help you during the development of web applications and more.

- Philip Ackermann

20 NODE.JS Modules You Need To Know

Over recent years Node.js has become more and more popular, and it is now often used for developing the server side of web applications, or in general during the development process. At the time of writing, the homepage of npm – the package manager for Node.js – lists over a quarter of a million modules. I’ve put together a list of the ones I find useful in my daily work as a web and software developer, from image manipulation, string validation and PDF generation to minification, logging and the creation of command line applications.

WORKING WITH IMAGES

1 Manipulate images

www.github.com/aheckmann/gm

GraphicsMagick and ImageMagick are two popular tools for creating, editing, composing and converting images. Thanks to the Node.js module gm you can use both tools directly from within your JavaScript code. The module supports all the typical image operations – resizing, clipping and encoding to name just a few.

const gm = require('gm'); gm('/path/to/image.jpg') .resize(500, 250) .autoOrient() .write(response, error => {});

2 Process images

www.github.com/lovell/sharp

Sharp is based on the ultra-fast libvips image processing library, and claims to be four to five times faster than ImageMagick or GraphicsMagick when it comes to compressing and resizing images. It supports JPEG, PNG, WebP, TIFF, GIF and SVG images, and outputs data into either JPEG, PNG, WebP or uncompressed raw pixel streams.

3 Generate sprite sheets

www.github.com/Ensighten/sprite smith

NET

This story is from the February 2017 edition of NET.

Subscribe to Magzter GOLD to access thousands of curated premium stories, and 9,500+ magazines and newspapers.

Already a subscriber?

MORE STORIES FROM NET

NET

NET

Camille Gribbons

UX designer at Booking.com, Camille Gribbons reveals how she first got into the industry

time to read

7 mins

June 2020

NET

NET

THE 5G UI REVOLUTION

Tris Tolliday describes his vision of a web UI catapulted forwards by 5G

time to read

3 mins

June 2020

NET

NET

HOW TO SHOWCASE YOUR DEV SKILLS

Aude Barral shares 5 top tips for landing your dream developer job

time to read

3 mins

June 2020

NET

NET

KNIVES OUT

Murder mystery film, Knives Out, grabbed everyone’s attention, and so did the fun website that promoted it. Oblio tells Tom May how it created its innovative 3D navigation

time to read

6 mins

June 2020

NET

NET

HOW EMOTIONAL LABOUR HINDERS WOMEN IN TECH

Christine Brewis, head of digital marketing at Studio Graphene, discusses how gender parity in tech has changed over the last ten years, and what more can be done

time to read

5 mins

June 2020

NET

NET

EDAN KWAN

He swapped life as a singer for a career making eye-popping digital visuals. The Lusion founder chats to Tom May about battling demons, winning awards and where digital advertising is heading

time to read

8 mins

June 2020

NET

NET

ANDREW COULDWELL

The Brit in LA discusses his new book on design systems, Laying the Foundations

time to read

3 mins

June 2020

NET

NET

Top 5 Tips For Ensuring Web Content Is Accessible For All

Merlyn Meredith outlines five top tips for ensuring web content is accessible for all

time to read

2 mins

May 2020

NET

NET

WHAT DOES THE FUTURE HOLD FOR BROWSERS?

Nico Turco examines the state of play with browsers, whether developers should encourage diversity or monopoly and how Google fits into it all

time to read

6 mins

May 2020

NET

NET

YEARS IN THE MAKING

Exclusively for net: The latest in a series of anonymous accounts of nightmare clients

time to read

3 mins

May 2020

Translate

Share

-
+

Change font size