mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-22 15:02:22 +00:00
210680c9c9
In my system (MBPr 13), printing the current version takes over 2 seconds: ```sh $ time ./bin/resin version 2.4.0 ./bin/resin version 1.37s user 0.19s system 73% cpu 2.130 total ``` The CLI takes almost all of these time to parse the dependency tree before returning control over the actually called command. To mitigate this problem, we only require the NPM dependencies a command requires when executing such command, and thus prevent dependencies from being required and parsed unnecessary. After this improvement, printing the original example (`resin version`) returns in less than a second (2x improvement): ```sh $ time ./bin/resin version 2.4.0 ./bin/resin version 0.88s user 0.09s system 102% cpu 0.938 total ```
41 lines
2.1 KiB
JavaScript
41 lines
2.1 KiB
JavaScript
(function() {
|
|
exports.wizard = {
|
|
signature: 'quickstart [name]',
|
|
description: 'getting started with resin.io',
|
|
help: 'Use this command to run a friendly wizard to get started with resin.io.\n\nThe wizard will guide you through:\n\n - Create an application.\n - Initialise an SDCard with the resin.io operating system.\n - Associate an existing project directory with your resin.io application.\n - Push your project to your devices.\n\nExamples:\n\n $ sudo resin quickstart\n $ sudo resin quickstart MyApp',
|
|
permission: 'user',
|
|
primary: true,
|
|
action: function(params, options, done) {
|
|
var Promise, capitano, patterns, resin;
|
|
Promise = require('bluebird');
|
|
capitano = Promise.promisifyAll(require('capitano'));
|
|
resin = require('resin-sdk');
|
|
patterns = require('../utils/patterns');
|
|
return Promise["try"](function() {
|
|
if (params.name != null) {
|
|
return;
|
|
}
|
|
return patterns.selectOrCreateApplication().tap(function(applicationName) {
|
|
return resin.models.application.has(applicationName).then(function(hasApplication) {
|
|
if (hasApplication) {
|
|
return applicationName;
|
|
}
|
|
return capitano.runAsync("app create " + applicationName);
|
|
});
|
|
}).then(function(applicationName) {
|
|
return params.name = applicationName;
|
|
});
|
|
}).then(function() {
|
|
return capitano.runAsync("device init --application " + params.name);
|
|
}).tap(patterns.awaitDevice).then(function(uuid) {
|
|
return capitano.runAsync("device " + uuid);
|
|
}).then(function() {
|
|
return resin.models.application.get(params.name);
|
|
}).then(function(application) {
|
|
return console.log("Your device is ready to start pushing some code!\n\nCheck our official documentation for more information:\n\n http://docs.resin.io/#/pages/introduction/introduction.md\n\nClone an example or go to an existing application directory and run:\n\n $ git remote add resin " + application.git_repository + "\n $ git push resin master");
|
|
}).nodeify(done);
|
|
}
|
|
};
|
|
|
|
}).call(this);
|