BaseX command scripts for nodejs
Install the module with: npm install basex-script
var basex-script = require('basex-script');
basex-script.awesome(); // "awesome"
A convenience object that generates BaseX
Command Scripts.
All BaseXScript
methods except BaseXScript.render()
are chainable.
name
: the tagname of the command (drop-db
)
Appends a command to the script.
All command name, input, and params are validated and relevant errors are thrown.
Adds a REPO INSTALL <file>
command for each argument.
Binds parameters for XQuery external variables.
These bindings are collected and prepended to the command script before all other commands upon rendering.
Appends an EXECUTE
command.
If command
can be a BaseXScript
instance.
Appends an XQUERY
command.
Imports files.
In order to specify parsing options for the files without affecting
global options, it appends an EXECUTE
command that executes
a child Command Script. Options that can be set are:
Specify the database to add files to. If not set the currently opened database will be used. If no db is currently open or the specified database does not exist the script will fail upon execution.
See Parsing Options
See Parsing Options
option
: Option name to set.
value
: Value to set the option to.
or
options
: Object of option/value pairs.
Appends single/multiple SET
command.
Appends an EXPORT <path>
command.
Appends an CHECK <db>
command.
Appends an OPEN <db>
command.
Appends a CLOSE
command.
Appends a RUN
command.
Renders the xml for this Command Script.
Alias of script.render()
(Coming soon)
(Coming soon)
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
(Nothing yet)
Copyright (c) 2013 Alexandros Sigalas. Licensed under the MIT license.