
Product
Socket Now Protects the Chrome Extension Ecosystem
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
nativeextractor.js
Advanced tools
This is official (NativeExtractor)[https://github.com/SpongeData-cz/nativeextractor] binding for Node.js
npm
build-essential
(gcc, make)libglib2.0
, libglib2.0-dev
We recommend to use virtual environments.
sudo pip install nodeenv
nodeenv myproject
source myproject/bin/activate
TODO:
npm install nativeextractor.js
Clone the repo
git clone --recurse-submodules https://github.com/SpongeData-cz/nativeextractor-js.git
Install via npm
npm install ./nativeextractor.js/
const ne = require('nativeextractor.js');
const path = require('path');
// Accumulated results
let results = [];
function test() {
// Instantiate Extractor
const ex = new ne.Extractor();
// Add naive email miner - see src/example/naive_email_miner.c for details
if (!ex.addMiner(path.join(ne.defaultMinersPath, "naive_email_miner.so"), "match_email_naive")) {
console.log(ex.getLastError());
return;
}
// String to extract on
const buffer = "some@email.org dead beaf";
// Create buffer stream (from memory)
const stream = new ne.BufferStream(buffer);
// Set the stream to the extractor
ex.setStream(stream);
// Check if stream is already on its end
if (ex.eof()) {
return;
}
// Pick next batch of result
ex.next(function (err, res) {
// Print found results
console.log(res);
results = [...results, ...res];
if (ex.eof()) {
// Unset stream for sure
ex.unsetStream();
return;
}
// Asynchronous recursion
ex.next(arguments.callee);
});
}
test();
FAQs
NativeExtractor bindings for Node.js
The npm package nativeextractor.js receives a total of 1 weekly downloads. As such, nativeextractor.js popularity was classified as not popular.
We found that nativeextractor.js 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.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.