Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@bscotch/utility
Advanced tools
Utility and helper methods for common programming problems in Node.js.
(These utilities do not work in browsers.)
npm install @bscotch/utility
Typescript:
// Replace `method` with the desired method name
import {method} from "@bscotch/utility"
JavaScript:
// Replace `method` with the desired method name
const {method} = require('@bscotch/utility');
import {
undent,
oneline
} from '@bscotch/utility';
oneline`
This string
will be converted
into
one that is
on a single line.
`;
// => "This string will be converted into one that is on a single line."
undent`
All lines will
be un-inindented
based on the line
with the smallest indentation.
`;
// =>
//` All lines will
//be un-inindented
// based on the line
// with the smallest indentation.`
import {
toPosixPath,
sortedPaths,
parentPaths
} from '@bscotch/utility';
toPosixPath("C:\\hello\\world"); // => "/c/hello/world"
const pathList = [
'hello/world',
'hello',
'h/another',
'hello/world/goodbye'
];
// Sort paths alphabetically *by directory* which causes
// paths sharing a common parent directory to appear consecutively.
sortedPaths(pathList); // =>
/*
* [
* 'hello',
* 'h/another',
* 'hello/world',
* 'hello/world/goodbye'
* ];
*/
// Get all paths leading to a target path
parentPaths('/hello/world/foo/bar.txt') // =>
/*
* [
* '/',
* '/hello',
* '/hello/world',
* '/hello/world/foo',
* '/hello/world/foo/bar.txt'
* ]
*/
import {
listPathsSync,
listFoldersSync,
listFilesSync,
listFilesByExtensionSync,
removeEmptyDirsSync,
} from '@bscotch/utility';
const recursive = true;
listPathsSync('.',recursive); // => paths to all files and folders in cwd
listFoldersSync('.',recursive); // => the subset of paths that are folders
listFilesSync('.',recursive); // => the subset of paths that are files
listFilesByExtensionSync('.','txt',recursive); // => the subset of files that end with '.txt'
listFilesByExtensionSync('.',['txt','md'],recursive); // => the subset of files that end with '.txt' or '.md'
removeEmptyDirsSync('.'); // Remove all empty directories (recursively)
import {
resolveInMillis,
resolveInSeconds,
resolveInNextTick,
} from '@bscotch/utility';
async myAsynFunction(){
// Wait for 1 second
await resolveInMillis(1000);
// Wait for 1 second
await resolveInSeconds(1);
// Wait until next tick
await resolveInNextTick();
}
import {
isPlainObject,
isPlainObjectOrArray,
asObjectIfArray,
flattenObjectPaths,
objectPaths,
getValueAtPath,
setValueAtPath,
objectPathsFromWildcardPath,
transformValueByPath,
} from '@bscotch/utility';
asObjectIfArray(['hello']); // return {'0':'hello'}
const testObject = {
hello: 'world',
nested: {
layer: 1,
array: [
4,
6,
7
]
}
}
flattenObjectPaths(testObject); // returns:
/**
* {
* 'hello':'world',
* 'nested.layer': 1,
* 'nested.array.0': 4,
* 'nested.array.1': 6,
* 'nested.array.2': 7,
* }
*/
objectPaths(testObject); // returns keys from flattenObjectPaths(testObject)
getValueAtPath(testObject,'nested.array.2'); // returns 7
setValueAtPath(testObject,'new.0.field',10); // adds 'new' field to set to [{field:10}]
objectPathsFromWildcardPath('nested.*',testObject); // returns:
// ['nested.layer','nested.array']
objectPathsFromWildcardPath('nested.array.*',testObject); // returns:
// ['nested.array.0','nested.array.1','nested.array.2]
transformValueByPath(testObject,'nested.array.*',n=>++n); // Increments all array values by 1
import {
md5,
sha1,
sha256,
createHash,
} from '@bscotch/utility';
let hash = md5('hello world'); // hex hash
hash = sha256('hello world','base64'); // Base64 hash
hash = createHash('sha1','hello world');
import {
isValidDate,
dateIsOlderThanSecondsAgo,
dateIsOlderThanMinutesAgo,
dateIsOlderThanHoursAgo,
dateIsOlderThanDaysAgo,
dateIsInTheFuture,
dateIsInThePast,
dateIsGreaterThan,
dateIsLessThan,
chronologySortReverse,
chronologySort
} from '@bscotch/utility';
FAQs
Bscotch Utilities: Methods for common Node.js needs.
The npm package @bscotch/utility receives a total of 88 weekly downloads. As such, @bscotch/utility popularity was classified as not popular.
We found that @bscotch/utility 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.