lyxaira.glass c1a3f3246e Escoger Renglon y Artesania, desplegados del JSON. | 5 년 전 | |
---|---|---|
.. | ||
.github | 5 년 전 | |
spec | 5 년 전 | |
src | 5 년 전 | |
.eslintrc.yml | 5 년 전 | |
.jscs.json | 5 년 전 | |
.jshintrc | 5 년 전 | |
.ratignore | 5 년 전 | |
.travis.yml | 5 년 전 | |
CONTRIBUTION.md | 5 년 전 | |
LICENSE | 5 년 전 | |
NOTICE | 5 년 전 | |
README.md | 5 년 전 | |
RELEASENOTES.md | 5 년 전 | |
appveyor.yml | 5 년 전 | |
package.json | 5 년 전 |
This module can be used to serve up a Cordova application in the browser. It has no command-line, but rather is intended to be called using the following API:
var cordovaServe = require('cordova-serve')();
cordovaServe.launchServer(opts);
cordovaServe.servePlatform(platform, opts);
cordovaServe.launchBrowser(ops);
var cordovaServe = require('cordova-serve')();
cordovaServe.launchServer(opts).then(function () {
var server = cordovaServe.server;
var root = cordovaServe.root;
var port = cordovaServe.port;
...
}, function (error) {
console.log('An error occurred: ' + error);
});
Launches a server with the specified options. Parameters:
Returns a promise that is fulfilled once the server has launched, or rejected if the server fails to launch. Once the
promise is fulfilled, the following properties are available on the cordovaServe
object:
var cordovaServe = require('cordova-serve')();
cordovaServe.servePlatform(platform, opts).then(function () {
var server = cordovaServe.server;
var port = cordovaServe.port;
var projectRoot = cordovaServe.projectRoot;
var platformRoot = cordovaServe.root;
...
}, function (error) {
console.log('An error occurred: ' + error);
});
Launches a server that serves up any Cordova platform (e.g. browser
, android
etc) from the current project.
Parameters:
servePlatform()
, the root
value should be a Cordova project’s
root folder, or any folder within it - servePlatform()
will replace it with the platform’s www_dir
folder. If this
value is not specified, the cwd will be used.Returns a promise that is fulfilled once the server has launched, or rejected if the server fails to launch. Once the
promise is fulfilled, the following properties are available on the cordovaServe
object:
www
folder.var cordovaServe = require('cordova-serve')();
cordovaServe.launchBrowser(opts).then(function (stdout) {
console.log('Browser was launched successfully: ' + stdout);
}, function (error) {
console.log('An error occurred: ' + error);
});
Launches a browser window pointing to the specified URL. The single parameter is an options object that supports the following values (both optional):
chrome
, chromium
, firefox
, ie
,
opera
, safari
. Defaults to chrome
if no browser is specified.Returns a promise that is fulfilled once the browser has been launched, or rejected if an error occurs.
The opts object passed to launchServer()
and servePlatform()
supports the following values (all optional):
ExpressJS
router. If provided, this will be attached before default static handling.true
, turns off all log output.true
, cordova-serve won’t output Static file server running on...
message.EventEmitter
to use for logging. If provided, logging will be output using events.emit('log', msg)
.
If not provided, console.log()
will be used. Note that nothing will be output in either case if noLogOutput
is true
.