Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.