
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
@rosen-bridge/atomic-typeorm-create-query-runner
Advanced tools
An alternative to default typeorm's createQueryRunner which behaves atomic and supports parallel transactions for sqlite
By default, typeorm doesn't handle parallel transactions. If you run two transactions simultaneously and your database doesn't support it (e.g. if you use sqlite), you will get errors.
npm:
npm i @rosen-bridge/atomic-typeorm-create-query-runner
yarn:
yarn add @rosen-bridge/atomic-typeorm-create-query-runner
import createAtomicQueryRunner from '@rosen-bridge/atomic-typeorm-create-query-runner';
const foo = () => {
// const queryRunner = dataSource.createQueryRunner();
const queryRunner = createAtomicQueryRunner(dataSource);
await queryRunner.connect();
await queryRunner.startTransaction();
try {
await applyAtomicQuery();
await queryRunner.commitTransaction();
} catch {
await queryRunner.rollbackTransaction();
} finally {
await queryRunner.release();
}
};
// You can now call the transactions simultaneously without getting errors
foo();
foo();
As you can see, no big changes required to use the package.
FAQs
An alternative to default typeorm's createQueryRunner which behaves atomic and supports parallel transactions for sqlite
We found that @rosen-bridge/atomic-typeorm-create-query-runner 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
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.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.