
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
algolia-csv
Advanced tools
It's a CLI and library to easily upload CSV files to Algolia in an efficient manner without limitations.
Cool features:
npm install -g algolia-csv
You must have a file in which the first row contains the name of all the fields.
algolia-upload $APP_ID $API_KEY $indexName $file|$url [-d $delimiter] [-b $batchSizer] [--clear-index] [--parse-arrays=$column] [--array-delimiter=$delimiter] [--geo-columns=$latCol,$longCol]
Mandatory parameters are the aplication id, a key with write rights, the target index name and the input CSV (locally or accessible with http/https).
Other parameters:
-d let you set the delimiter used in your file. This should be set in quotes. Default is ','.-b let you set the batch size. Default is 10000.--clear-index forces the index to be cleared before uploading the new data.--parse-arrays=column let you specify if a column value should be split before uploading the data.
More than one column can be set using this parameter multiple times. Value will be split with --array-delimiter.--array-delimiter let you specify the delimiter used to split the values of columns defined with --parse-arrays. Default is ','.--geo-columns=latCol,longCol let you specify two columns that are to be used for creating the special algolia attribute _geoloc.npm install --save algolia-csv
var algoliaCsvTools = require('algolia-csv');
algoliaCsvTools.upload({
appId: '',
apiKey: '',
indexName: '',
inputFile: '',
batchSize: 1000,
delimiter: ',',
clearIndex: false,
parseArrays: ['column'],
arrayDelimiter: '|',
geoColumns: {lat: 'latCol', 'lng': 'longColumn'}
});
FAQs
Algolia CSV toolbox CLI
The npm package algolia-csv receives a total of 32 weekly downloads. As such, algolia-csv popularity was classified as not popular.
We found that algolia-csv 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.