
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.
write2sheet
Advanced tools
Simple Node.js library to write to Google Sheets
Super simple library that writes data into a Google Sheet
Authorizing requests with OAuth 2.0
)
client_secret.json
to folderSimple example to write current date to a cell
const moment = require('moment');
const GoogleSheetWrite = require('.');
const sheet = new GoogleSheetWrite('<some spreadsheet id>');
// Update date
const mydate = moment().format('YYYY/MM/DD HH:mm:ss');
const range = 'Sheet!B4';
sheet.write([[mydate]], range);
Example to write current coin values to Range in sheet Currencies
(using averissimo/crypto-market-scrapper)
const scrapper = require('crypto-market-scrapper');
const GoogleSheetWrite = require('.');
const sheet = new GoogleSheetWrite('<some spreadsheet id>');
const currencies = scrapper.getCurrencies([{
"description": "Garlicoin",
"code": "GRLC",
"url": "https://coinmarketcap.com/currencies/garlicoin/"
}, {
"description": "Bitcoin ",
"code": "BTC",
"url": "https://coinmarketcap.com/currencies/bitcoin/"
}]);
currencies.then(response => {
const values = response.sort((a, b) => {
return a.code.localeCompare(b.code);
}).map(el => {
return [el.description, el.code, el.usd];
});
// Write to sheet
sheet.write(values, 'Currencies!B9:D');
});
Consider donating if this library has helped
GNU General public license (v3), see LICENSE
for more details
FAQs
Write data to google Sheets
We found that write2sheet 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
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.