npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

sheetify-inline

1.2.3

@zhouhancheng

npmHomeRepoSnykSocket
Downloads:0
$ npm install sheetify-inline
DailyWeeklyMonthlyYearly

sheetify-inline stability

npm version downloads travis build

Plugin transforms img to base64 for sheetify

works with async functions (node 7.6+)

Example

before:

div{
  background: url('test.png')
}

after:

div{
  background: url('data:image/png;base64,iVBORw0KGgoAAA...')
}

Test

npm test

Command line

$ browserify entry.js -t [ sheetify/transform -u sheetify-inline ]

JS api

const browserify = require('browserify')

browserify()
 .transform('sheetify/transform', { use: [ 'sheetify-inline' ] })
 .bundle()

Installation

$ npm install sheetify-inline

License

MIT