File size: 5,309 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
console.time('next-wall-time')
// Usage: node scripts/minimal-server.js <path-to-app-dir-build> <path-to-page>
// This script is used to run a minimal Next.js server in production mode.
process.env.NODE_ENV = 'production'
// Change this to 'experimental' to opt into the React experimental channel (needed for server actions, ppr)
process.env.__NEXT_PRIVATE_PREBUNDLED_REACT = 'next'
let currentNode = null
let outliers = []
const chalk = {
yellow: (str) => `\x1b[33m${str}\x1b[0m`,
green: (str) => `\x1b[32m${str}\x1b[0m`,
}
if (process.env.LOG_REQUIRE) {
const originalCompile = require('module').prototype._compile
require('module').prototype._compile = function (_content, filename) {
let parent = currentNode
currentNode = {
id: filename,
selfDuration: 0,
totalDuration: 0,
children: [],
}
const start = performance.now()
const result = originalCompile.apply(this, arguments)
const end = performance.now()
currentNode.totalDuration = end - start
currentNode.selfDuration = currentNode.children.reduce(
(acc, child) => acc - child.selfDuration,
currentNode.totalDuration
)
parent?.children.push(currentNode)
currentNode = parent || currentNode
return result
}
}
function prettyPrint(
node,
distDir,
prefix = '',
isLast = false,
isRoot = true
) {
let duration = `${node.selfDuration.toFixed(
2
)}ms / ${node.totalDuration.toFixed(2)}ms`
if (node.selfDuration > 70) {
duration = chalk.yellow(duration)
outliers.push(node)
}
let output = `${prefix}${isLast || isRoot ? '└─ ' : '├─ '}${chalk.green(
path.relative(distDir, node.id)
)} ${chalk.yellow(duration)}\n`
const childPrefix = `${prefix}${isRoot ? ' ' : isLast ? ' ' : '│ '}`
node.children.forEach((child, i) => {
output += prettyPrint(
child,
node.id,
childPrefix,
i === node.children.length - 1,
false
)
})
return output
}
if (process.env.LOG_COMPILE) {
const originalCompile = require('module').prototype._compile
const currentDir = process.cwd()
require('module').prototype._compile = function (content, filename) {
const strippedFilename = filename.replace(currentDir, '')
console.time(`Module '${strippedFilename}' compiled`)
const result = originalCompile.apply(this, arguments)
console.timeEnd(`Module '${strippedFilename}' compiled`)
return result
}
}
const appDir = process.argv[2]
const absoluteAppDir = require('path').resolve(appDir)
process.chdir(absoluteAppDir)
let readFileCount = 0
let readFileSyncCount = 0
if (process.env.LOG_READFILE) {
const originalReadFile = require('fs').readFile
const originalReadFileSync = require('fs').readFileSync
require('fs').readFile = function (path, options, callback) {
readFileCount++
console.log(`readFile: ${require('path').relative(absoluteAppDir, path)}`)
return originalReadFile.apply(this, arguments)
}
require('fs').readFileSync = function (path, options) {
readFileSyncCount++
console.log(
`readFileSync: ${require('path').relative(absoluteAppDir, path)}`
)
return originalReadFileSync.apply(this, arguments)
}
}
console.time('next-cold-start')
const NextServer = process.env.USE_BUNDLED_NEXT
? require('next/dist/compiled/next-server/server.runtime.prod').default
: require('next/dist/server/next-server').default
if (process.env.LOG_READFILE) {
console.log(`readFileCount: ${readFileCount + readFileSyncCount}`)
}
const path = require('path')
const distDir = '.next'
const compiledConfig = require(
path.join(absoluteAppDir, distDir, 'required-server-files.json')
).config
const nextServer = new NextServer({
conf: compiledConfig,
dir: '.',
distDir: distDir,
minimalMode: true,
customServer: false,
})
const requestHandler = nextServer.getRequestHandler()
require('http')
.createServer((req, res) => {
console.time('next-request')
readFileCount = 0
readFileSyncCount = 0
return requestHandler(req, res)
.catch((err) => {
console.error(err)
res.statusCode = 500
res.end('Internal Server Error')
})
.finally(() => {
console.timeEnd('next-request')
if (process.env.LOG_READFILE) {
console.log(`readFileCount: ${readFileCount + readFileSyncCount}`)
}
})
})
.listen(3000, () => {
console.timeEnd('next-cold-start')
fetch('http://localhost:3000/' + (process.argv[3] || ''))
.then((res) => res.text())
.catch((err) => {
console.error(err)
})
.finally(() => {
console.timeEnd('next-wall-time')
if (process.env.LOG_REQUIRE) {
console.log(
prettyPrint(currentNode, path.join(absoluteAppDir, distDir))
)
if (outliers.length > 0) {
console.log('Outliers:')
outliers.forEach((node) => {
console.log(
` ${path.relative(
path.join(absoluteAppDir, distDir),
node.id
)} ${node.selfDuration.toFixed(
2
)}ms / ${node.totalDuration.toFixed(2)}ms`
)
})
}
}
require('process').exit(0)
})
})
|