nodekit-cli
Version:
A command-line tool for creating {NK} NodeKit applications
36 lines (30 loc) • 1.55 kB
JavaScript
/**
Licensed to OffGrid Networks (OGN) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. OGN licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
var create = require('nodekit-cli')['nodekit-cli-create'];
var events = require('nodekit-cli')['nodekit-cli-common'].events;
module.exports = function(dir, optionalId, optionalName, cfg, extEvents){
if (extEvents) {
return create(dir, optionalId, optionalName, cfg, extEvents);
} else {
return create(dir, optionalId, optionalName, cfg, events);
}
};
/* If we do not pass in extEvents, then NodeKitLogger will set up the listeners
inside of nodekit-create. That means we'll log everything always. By passing in
a dummy nodekit-common.events EventEmitter with no listeners, then nodekit-lib
won't log in the create tests. When nodekit-cli uses nodekit-lib, it will setup
the listeners for events using NodeKitLogger. */