Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

perf: faster startup #1528

Merged
merged 1 commit into from
Aug 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/cli/commands/daemon.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use strict'

const HttpAPI = require('../../http')
const utils = require('../utils')
const print = utils.print

Expand Down Expand Up @@ -32,6 +31,9 @@ module.exports = {
print('Initializing daemon...')

const repoPath = utils.getRepoPath()

// Required inline to reduce startup time
const HttpAPI = require('../../http')
httpAPI = new HttpAPI(process.env.IPFS_PATH, null, argv)

httpAPI.start((err) => {
Expand Down
6 changes: 4 additions & 2 deletions src/cli/commands/init.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
'use strict'

const Repo = require('ipfs-repo')
const IPFS = require('../../core')
const utils = require('../utils')
const print = utils.print

Expand Down Expand Up @@ -31,6 +29,10 @@ module.exports = {

print(`initializing ipfs node at ${path}`)

// Required inline to reduce startup time
const IPFS = require('../../core')
const Repo = require('ipfs-repo')

const node = new IPFS({
repo: new Repo(path),
init: false,
Expand Down