mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-31 19:15:58 +01:00
require npm module only as needed - shaves off a full second of loading time yay
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
var start = process.hrtime();
|
||||
var fs = require('fs'),
|
||||
path = require('path'),
|
||||
async = require('async'),
|
||||
@@ -18,10 +19,12 @@ var fs = require('fs'),
|
||||
|
||||
controllers = require('./controllers'),
|
||||
app, middleware;
|
||||
process.profile('requiring modules', start);
|
||||
|
||||
(function(Plugins) {
|
||||
|
||||
var start = process.hrtime();
|
||||
require('./plugins/install')(Plugins);
|
||||
process.profile('requiring modules 2', start);
|
||||
require('./plugins/load')(Plugins);
|
||||
require('./plugins/hooks')(Plugins);
|
||||
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
|
||||
var winston = require('winston'),
|
||||
async = require('async'),
|
||||
npm = require('npm'),
|
||||
path = require('path'),
|
||||
fs = require('fs'),
|
||||
nconf = require('nconf'),
|
||||
@@ -88,10 +87,10 @@ module.exports = function(Plugins) {
|
||||
next();
|
||||
},
|
||||
function(next) {
|
||||
npm.load({}, next);
|
||||
require('npm').load({}, next);
|
||||
},
|
||||
function(res, next) {
|
||||
npm.commands[type](installed ? id : [id + '@' + (version || 'latest')], next);
|
||||
require('npm').commands[type](installed ? id : [id + '@' + (version || 'latest')], next);
|
||||
}
|
||||
], function(err) {
|
||||
if (err) {
|
||||
@@ -111,10 +110,10 @@ module.exports = function(Plugins) {
|
||||
function upgrade(id, version, callback) {
|
||||
async.waterfall([
|
||||
function(next) {
|
||||
npm.load({}, next);
|
||||
require('npm').load({}, next);
|
||||
},
|
||||
function(res, next) {
|
||||
npm.commands.install([id + '@' + (version || 'latest')], next);
|
||||
require('npm').commands.install([id + '@' + (version || 'latest')], next);
|
||||
}
|
||||
], callback);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user