Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including archive-search with all npm packages installed. Try it out:

const { archiveSearch } = require('archive-search') const options = { searchBy: 'title', fields: [ 'creator', 'date', 'description', 'downloads', 'mediatype', 'title', 'type', 'year', ], max: 500, sortBy: { date: 'asc', }, } archiveSearch.search('test', options) .then(result => console.log(result)) .catch(e => console.log(e)) const identifier = 'gd1967-xx-xx.sbd.studio.81259.flac16' archiveSearch.metaSearch(identifier) .then(result => console.log(result)) .catch(e => console.log(e))

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

archive-search v1.0.15

Small, zero dependency, Promise based library to search through archive.org's api for the browser and node.

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free