open-uri

0.4.3 • Public • Published

Asynchronous Open URI

A CommonJS module inspired by Rubys Open-URI library.

Install

It's available on npm, so a simple npm install open-uri should be enough.

Usage

var open = require("open-uri");

// Get a website
open("http://google.com",function(err,google){console.log(google)})

// Get a file
open("/var/log/system.log",function(err,log){console.log(log)})

// Stream a file to STDOUT
open("file:///var/log/system.log",process.stdout)

// Stream a website to a file
var file = require("fs").createWriteStream("/tmp/goog.html")
open("https://encrypted.google.com/search?q=open+uri",file)

// Chain it 
open("http://google.com",console.log)("http://publicclass.se",process.stdout)

// Get a file off of an FTP
open("ftp://user:pass@ftp.example.com/myfile.txt",function(err,txt){console.log(txt)})

Supported schemes

http, https, file & ftp

Uses the addressable module for parsing the scheme and the mime module for parsing the data.

Options for all schemes

  • buffer (boolean) For when you only want the body to be buffered and returned as the second argument instead of receiving the direct stream. Defaults to true.

Options for HTTP(S)

  • follow (boolean) Follow redirects. Defaults to true.
  • gzip (boolean) If the request should be attempted with gzip. Defaults to true.
  • headers (object) Headers to pass along with the HTTP request.
  • method (string) HTTP request method. Default 'GET'.
  • body (readablestream|string|buffer) A body of data to pass with the request.
  • key (string) (HTTPS Only) Private key to use for SSL. Defaults to ENV var NODE_HTTPS_KEY or attempts to find it as "./key.pem".
  • cert (string) (HTTPS Only) Public x509 certificate to use. Defaults to ENV var NODE_HTTPS_CERT or attempts to find it as "./cert.pem".
  • ca (string|array) (HTTPS Only) An authority certificate or array of authority certificates to check the remote host against.

Options for file

  • encoding (string) The encoding of the file to read.

Options for FTP

  • anonymous (boolean) If no user info is in the URI, add anonymous. Defaults to true.

TODO

  • HTTP(S) Support older versions of Node? Currently only support 0.3.6 and up (because of the new HTTP Client API).

  • HTTP(S) Proxy support.

  • FTP Listing files (when uri.pathname ends with "/")

  • FTP Uploading files (when opts.body is passed)

  • A timeout option for all schemes would be useful.

  • A binary, just for fun really. Usage: open-uri http://google.com.

    • Output to process.stdout by default.
    • Allow a REST interface? So if something is written to stdin it's sent as body to the url using POST by default, but definable with -X (curl style!)
    • Pass command line arguments as options to the scheme functions. Ex. open-uri -gzip http://google.com sets opts.gzip to true.
  • More schemes support? Suggestions?

    • Support for opening a file descriptor? Basically a shortcut for fs.readFile(fd).
    • S3 (using knox module), should list objects when path ends with "/"
    • NNTP (using node-nntp module)
    • IRC (using node-irc module), open("irc://bot@chat.freenode.net/nodejs") -> callback for each message? with a say function in the callback? ex: function(err,from,to,msg,say){ if( to == "bot" && ~msg.indexOf("hello") ){ say(from+": HI!") } } this could be the irc object so the socket can be closed...
    • SQL query. Is there a standard URI for this? Something like: mysql://root@localhost/mydb?query=SELECT * FROM x; or sqlite3://file.sqlite?query=SELECT * FROM x; possibly with support for input escaping. open("sqlite3://file.sqlite?query=SELECT * FROM x WHERE id=? AND name=?;",[12,"bob"]) using the drivers own escaping. With a callback like function(err,rows,meta){}.

Thanks to

License

(The MIT License)

Copyright (c) 2011 Robert Sköld <robert@publicclass.se>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i open-uri

Weekly Downloads

228

Version

0.4.3

License

none

Last publish

Collaborators

  • slaskis