This is a Node.js wrapper for the Unsplash API.
This project is still in development.
npm i --save unsplash-api
var unsplash = require('unsplash-api');
// this is required to verify your application's requests
unsplash.init(myApiKey);
var photos = unsplash.getUserPhotos('fletcher_hills', function(err, photos) {
// do stuff with your newly acquired photos
});
License MIT