
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
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
The npm package write2sheet receives a total of 1 weekly downloads. As such, write2sheet popularity was classified as not popular.
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.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.