
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
quickreload
Advanced tools
A tiny thing to tell the browser to reload css / javascript when files are changed on disk
A tiny thing to make the browser reload when files are changed on disk.
Includes a command line tool and an express middleware.
Features:
quickreload from the command lineif (process.env.NODE_ENV === 'development') {
app.use(require("quickreload")({
// options...
));
}
Valid options are:
inject Will inject a snippet into all reponses with content-type set to text/html that loads the browser side part of quickreload. Default is true.If using inject: false, the following snippet must be included in the source code of pages that should reload on changes:
<script src="/quickreload.js" async></script>
Install the command system wide using npm install quickreload -g
Usage: quickreload [options] [watchdir]
Will default to current working directory if watchdir is omitted.
Options:
--css <extensions...> Comma separated list of extensions to treat as css
files. The client will reload all tags matching
link[rel=stylesheet] when files with any of these
extensions are changed.
Default: css,sass,scss,less,styl
--js <extensions...> Comma separated list of extensions to treat as js
files. The client will do a full page reload when
files with any of these extensions are changed.
Default: js,jsx,coffee,json
--html <extensions...> Comma separated list of extensions to treat as html
files. The client will do a full page reload when
files with any of these extensions are changed.
Default: html
--ignore, -i <dir|globstr> A directory name or glob string that, if a directory
matches it will, it will not be watched for
changes.
Default: node_modules
--port, -p <port> Port to listen to. Will assign a random available
port if not given.
FAQs
A tiny thing to tell the browser to reload css / javascript when files are changed on disk
We found that quickreload 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.