
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
makefile-help
Advanced tools
An easy way to add an auto-generated make help target to your Node.js project's Makefile.
This makes make command discovery nicer, while still using the same make tool that's available in pretty much every dev environment. If you're looking for something a bit more powerful, but at the expense of installing something new, check out tj/mmake!
For a makefile like...
ifneq ($(wildcard ./node_modules),)
include ./node_modules/makefile-help/Makefile
endif
# Run commands with the node debugger. (default: false)
DEBUG ?= false
ifeq ($(DEBUG),false)
node = node
else
node = node debug
endif
# Remove all of the derived files.
clean:
@ rm -rf ./node_modules ./lib
# Compile the source with babel.
lib:
@ ./node_modules/.bin/babel-cli --out-dir ./lib ./src
# Start the development server.
start:
@ $(node) ./server/index.js
Running make help will print out...
$ make help
Usage:
make <target> [flags...]
Targets:
clean Remove all of the derived files.
help Show this help prompt.
lib Compile the source with babel.
start Start the development server.
Flags:
DEBUG Run commands with the node debugger. (default: false)
yarn add makefile-help
npm install --save makefile-help
To use it, include this module's Makefile in your own...
ifneq ($(wildcard ./node_modules),)
include ./node_modules/makefile-help/Makefile
endif
And then run...
$ make help
The help command will auto-populate from targets that look like:
# This comment will show up for the target in the help.
target:
And also for flag definitions like:
# This comment will show up for the flag in the help.
FLAG ?=
FAQs
An easy way to add a `make help` target to your Makefiles.
We found that makefile-help demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.