
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.
@twec/netsuite-client
Advanced tools
Generic functionality for connecting to NetSuite Web Services from Node
(Node + NetSuite)
This package contains functionality for connecting to NetSuite Web Services from Node, handling token authorization and SOAP XML parsing, and allows fetching records and uploading files.
npm install @twec/netsuite-client
const NetSuiteClient = require('netsuite-client');
// or: import NetSuiteClient from 'netsuite-client';
When instatiating your netsuite object, you'll need to provide a config object with connection details. See netsuite-config-template.json.
const netSuiteConfig = {
// various properties
// see netsuite-config-template.json
// or the defaultConfig in netsuite-client.js
};
const netsuiteClient = new NetSuiteClient(netsuiteConfig);
const record = await netsuiteClient.get({
// Specify one or more of these properties
type: '',
internalId: '',
externalId: ''
});
const fileRef = await netsuiteClient.upload(
'./some/local/dir/my-file.csv', // local file
'uploads/my-file.csv', // NetSuite target file path
);
Checkout other methods: look at the netsuite object console.log(netsuiteClient);
and read netsuite-client.js.
Currently you can only fetch records (get
operation), upload a file (upsert
operation), and fetch folders.
netsuite-config.json
file; see netsuite-config-template.json
for an example in the Functional test folder.yarn run test
to execute the test scripts.FAQs
Generic functionality for connecting to NetSuite Web Services from Node
The npm package @twec/netsuite-client receives a total of 12 weekly downloads. As such, @twec/netsuite-client popularity was classified as not popular.
We found that @twec/netsuite-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.