Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
auto-reload-brunch
Advanced tools
Adds automatic browser reloading support to Brunch when using the brunch watch
command.
The plugin uses WebSocket technology to pass compile
events to browser.
Install the plugin via npm with
npm install -S auto-reload-brunch
In most cases, auto-reload-brunch
works out of the box without any further configuration. Stylesheet changes will be applied seamlessly, and any other changes will trigger a page refresh. To prevent a stylesheet from being reloaded automatically, set the data-autoreload="false"
attribute on the stylesheet's link tag.
If customization is needed or desired, settings can be modified in your brunch config file (such as brunch-config.coffee
):
true
js
or css
) or assets
to cover any other watched files that do not get compiled. When an object is used, only the types explicitly set to true
will trigger an Auto-Reload.[9485..9495]
'0.0.0.0'
) Server's host address.false
) forcefully repaint the page after stylesheets refresh. Enabled in Chrome by default to mitigate the issue when it doesn't always update styles.wss://
instead of ws://
.Example:
module.exports = {
// ...
// All settings are optional
plugins: {
autoReload: {
enabled: {
css: true,
js: true,
assets: false
},
port: [1234, 2345, 3456],
delay: require('os').platform() === 'win32' && 200,
keyPath: 'path/to/ssl.key',
certPath: 'path/to/ssl.crt',
forcewss: true
}
}
};
If your brunch watch
is running on a different machine than your preview screen, you can set server
config variable to connect to a brunch/websocket server running at another ip address.
<script>
window.brunch = window.brunch || {};
window.brunch.server = '192.168.1.2';
</script>
You can also set the port (single integer only) and/or disable auto-reload via client-side scripting, although generally it's a better idea to use brunch config for this:
window.brunch['auto-reload'] = window.brunch['auto-reload'] || {};
window.brunch['auto-reload'].port = 1234
window.brunch['auto-reload'].disabled = true;
You can configure what extensions count as stylesheet and javascript reloads. By default, any compile file with an extension other than .css
or .js
will do a full page reload. The match
option allows you to issue efficient stylesheet-only reloads for other file extensions as well.
The value of match.stylesheets
and match.javascripts
is an anymatch set, and so can be a wildcard, regexp, function, or an array thereof.
module.exports = {
// ...
plugins: {
autoReload: {
match: {
stylesheets: ['*.css', '*.jpg', '*.png'],
javascripts: ['*.js']
}
}
}
};
The MIT License (MIT)
Copyright (c) 2012-2017 Paul Miller (http://paulmillr.com)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Adds automatic browser reloading support to brunch.
The npm package auto-reload-brunch receives a total of 1,570 weekly downloads. As such, auto-reload-brunch popularity was classified as popular.
We found that auto-reload-brunch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.