New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

local-uri

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

local-uri

Generates a local URI from a String or Typed Array, with fallbacks for older browsers

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

local-uri

Generates a local URI from a String or Typed Array, with fallbacks for older browsers.

Usage

NPM

uri = createURI(data, type)

data is a String or Typed Array (e.g. Float32Array), and will be the content recieved when the uri is requested.

type is the mime type to use for the URI. Defaults to text/plain;charset=US-ASCII.

var createURI = require('local-uri')
var xhr       = require('xhr')

var uri = createURI('hello world!')

xhr({ uri: uri }, function(err, res, body) {
  console.log(body) // "hello world!"
})

License

MIT. See LICENSE.md for details.

Keywords

local

FAQs

Package last updated on 17 May 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts