0.1.0 • Published 10 years ago
html-img-digger v0.1.0
html-img-digger
Usage
Basic
import digger from 'html-img-digger'
let tpl = '<div><img src="http://placehold.it/350x150"></div>'
let images = digger.dig(tpl)images
[
{
url: 'http://placehold.it/350x150',
alt: '',
},
]Download remote images (size digs, but slower)
let tpl = '<div><img src="http://placehold.it/350x150"></div>'
let images = digger.dig(tpl, { remote: true })images
[
{
url: 'http://placehold.it/350x150',
alt: '',
width: 350,
height: 150,
},
]Development
npm run devTest
npm testdig()
✓ 從傳入的 htmlString 中,採集出 img 物件們
✓ 允許遠端採集圖片寬與高(using http request) (651ms)0.1.0
10 years ago