
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Asynchronous task runner for Node.js Beta version - use at own risk.
Basic usage example.
auto({
// Get data, simulation as asynchornous operation
get_data: [ function get_data( next, report ) {
next( null, {
name: 'Eric Flatley',
username: 'Arnoldo_Lubowitz',
email: 'Tyshawn@emie.biz',
phone: '917.531.3079 x06115',
website: 'donald.io'
});
}],
// Create folder, which is an asynchronous operation
make_folder: [ 'get_data', function make_folder( next, report ) {
setTimeout( function() { next( null, 'folder created' ); }, 100 )
}],
// Write file once we have the data and folder is created
write_file: ['get_data', 'make_folder', function write_file( next, report ) {
setTimeout( function() { next( null, 'folder created' ); }, 200 )
}],
// Email Link once file is written
email_link: ['write_file', function email_link( next, report ) {
next( null, 'email sent' );
}]
}).once( 'complete', console.log )
The auto task runner may be used as a middleware method.
app.get( '/test/:id', auto.middleware( tasks );
See the "express" example in the examples directory.
Advanced usage example.
Each instance has the following properties.
Each step is executed within a context with the following properties:
(The MIT License)
Copyright (c) 2013 Usability Dynamics, Inc. <info@usabilitydynamics.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.
v10.0.2 (Thu Oct 29 2020)
@auto-it/core
FAQs
CLI tools to help facilitate semantic versioning based on GitHub PR labels
The npm package auto receives a total of 52,611 weekly downloads. As such, auto popularity was classified as popular.
We found that auto demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.