mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
var system = require('system');
|
|
var webpage = require('webpage');
|
|
|
|
if (system.args.length < 2) {
|
|
throw new Error("Must pass URL argument to this script.");
|
|
}
|
|
|
|
console.log("opening webpage", system.args[1]);
|
|
|
|
webpage.create().open(system.args[1]); |