
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Rename files using some transformers.
NOTE: Rename < 0.2.0 is not the same lib, you can see renamer. 1.0.0 have a big change.
$ npm install rename -g
Rename file using another filepath.
rename('a.js', 'b.js');
// => b.js
Rename file using a transform object that contain some property.
{
dirname: "replace dirname",
prefix: "add prefix before basename",
basename: "replace dirname",
suffix: "add prefix after basename",
extname: "replace extname"
}
Add -debug
suffix
rename('a.js', {suffix: '-debug'});
// => a-debug.js
Also can use a transform function that could return a transform object.
rename('a.js', function() {
return {suffix: '-debug'};
});
// => a-debug.js
Filepath can be a string or object. Parse the filepath to file object if it's a string.
File object should contain property dirname, basename and extname.
rename({
basename: 'a',
extname: '.js'
}, 'b.js');
// => b.js
Transformer can be a function, string or object.
Simple example about transform function using custom property.
function transformer(fileObj) {
return {
suffix: fileObj.hash || '-debug'
};
}
rename({
basename: 'a',
extname: '.js'
}, transformer);
// => a-debug.js
rename({
basename: 'a',
extname: '.js',
hash: '-123'
}, transformer);
// => a-123.js
The value of transform object can be template that parsed from file object.
rename({
basename: 'c',
extname: '.js',
hash: '111'
}, {
suffix: '-${hash}',
}).should.eql('c-111.js');
Generate a file object from a string or object.
Generate a filepath from file object.
Copyright (c) 2017 popomore. Licensed under the MIT license.
FAQs
Rename files using some transformers.
The npm package rename receives a total of 10,310 weekly downloads. As such, rename popularity was classified as popular.
We found that rename demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.