Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/junosuarez/node-parse-data-uri

parse a data uri into mime type and buffer
https://github.com/junosuarez/node-parse-data-uri

Last synced: 8 days ago
JSON representation

parse a data uri into mime type and buffer

Awesome Lists containing this project

README

        

# parse-data-uri
parse a data uri into mime type and buffer

## usage
```js
var parseDataUri = require('parse-data-uri')

var dataUri = 'data:image/jpeg;base64,23423423...'

var parsed = parseDataUri(dataUri)

console.log(parsed)
// {
// mimeType: 'image/jpeg',
// data: Buffer < 00 00 00 ... >
// }

```

## api
###`parseDataUri : ( dataUri: String ) => {mimeType: String, data: Buffer}`

## installation

$ npm install parse-data-uri

## running the tests

From package root:

$ npm install
$ npm test

Special thanks to @tootallnate for writing [data-uri-to-buffer](https://npm.im/data-uri-to-buffer)

## contributors

- jden

## license

ISC. (c) MMXIV jden . See LICENSE.md