Package Exports
- out-url
- out-url/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (out-url) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
out-url
Light Weight, Cross platform Node.js Utility to open urls in browser with zero dependencies
Supported platforms
- Android
- Windows
- MacOS
- Linux
Example
// Plain example
const { open } = require('out-url');
open('https://github.com/azhar22k');
//or
require('out-url').open('https://github.com/azhar22k');
// With error handling
const { open } = require('out-url');
open('https://github.com/azhar22k')
.then(res => console.log('RES', res)) // Resolves with Done!
.catch(err => console.log('ERR', err));
// Using async/await
const { open } = require('out-url');
const foo = async () {
await open('https://github.com/azhar22k');
}