Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 704 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 704 Bytes

gist-require Build Status

Require JavaScript module from Gist URL

NOTE only 1 file per gist with correct type 'application/javascript'

Install

$ npm install gist-require

Usage

example gist

// link => https://gist.github.com/sohje/73a80333911026a1be25
module.exports = () => {console.log('Hello from Gist')}

Run example

var gistr = require('gist-require')
var url = 'https://gist.github.com/sohje/73a80333911026a1be25'
gistr(url, (err, data) => {
	data() //=> Hello from Gist
})

License

MIT © Nikolay Spiridonov