
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.
@userfrosting/ts-log-adapter-gulplog
Advanced tools
An adapter for the ts-log interface that pushes logging to gulplog with optional arguments JSON encoded.
Branch | Status |
---|---|
master |
An adapter for the ts-log interface that pushes logging to gulplog.
Before being passed to gulplog
, the message optional arguments will be processed to ensure proper logging. The trace
log level does not map across and will be directed to GulpLog.debug
with TRACE:
prefixed to logging.
npm i -D @userfrosting/ts-log-adapter-gulplog
// gulpfile.mjs
import { GulpLogLogger } from "@userfrosting/ts-log-adapter-gulplog";
import { src, dest } from "gulp";
import AssetBundler from "@userfrosting/gulp-bundle-assets";
import cleanCss from "gulp-clean-css";
import concatCss from "gulp-concat-css";
import concatJs from "gulp-concat-js";
import uglify from "gulp-uglify";
export function bundle() {
const config = {
bundle: {
example: {
scripts: [
"foo.js",
"bar.js"
],
styles: [
"foo.css",
"bar.css"
]
}
},
logger: new GulpLogLogger(),
};
const joiner = {
Scripts(bundleStream, name) {
return bundleStream
.pipe(concatJs(name + ".js"))// example.js
.pipe(uglify());
},
Styles(bundleStream, name) {
return bundleStream
.pipe(concatCss(name + ".css"))// example.css
.pipe(cleanCss());
}
};
return src("src/**")
.pipe(new AssetBundler(config, joiner))
.pipe(dest("public/assets/"));
}
$ gulp bundle
See docs/api.
See CONTRIBUTING.md.
FAQs
An adapter for the ts-log interface that pushes logging to gulplog with optional arguments JSON encoded.
The npm package @userfrosting/ts-log-adapter-gulplog receives a total of 39 weekly downloads. As such, @userfrosting/ts-log-adapter-gulplog popularity was classified as not popular.
We found that @userfrosting/ts-log-adapter-gulplog 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
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.