Skip to content

Commit 1cc5cbd

Browse files
committed
initial commit
0 parents  commit 1cc5cbd

11 files changed

+1078
-0
lines changed

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# react-scripts-ssr

bin/index.js

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#!/usr/bin/env node
2+
var spawn = require('cross-spawn');
3+
const args = process.argv.slice(2);
4+
5+
const scriptIndex = args.findIndex(
6+
x => x === 'build-server' || x === 'start'
7+
);
8+
const script = scriptIndex === -1 ? args[0] : args[scriptIndex];
9+
const nodeArgs = scriptIndex > 0 ? args.slice(0, scriptIndex) : [];
10+
11+
switch (script) {
12+
case 'build-server':
13+
case 'start': {
14+
const result = spawn.sync(
15+
'node',
16+
nodeArgs
17+
.concat(require.resolve('../scripts/' + script))
18+
.concat(args.slice(scriptIndex + 1)),
19+
{ stdio: 'inherit' }
20+
);
21+
if (result.signal) {
22+
if (result.signal === 'SIGKILL') {
23+
console.log(
24+
'The build failed because the process exited too early. ' +
25+
'This probably means the system ran out of memory or someone called ' +
26+
'`kill -9` on the process.'
27+
);
28+
} else if (result.signal === 'SIGTERM') {
29+
console.log(
30+
'The build failed because the process exited too early. ' +
31+
'Someone might have called `kill` or `killall`, or the system could ' +
32+
'be shutting down.'
33+
);
34+
}
35+
process.exit(1);
36+
}
37+
process.exit(result.status);
38+
break;
39+
}
40+
default:
41+
console.log('Unknown script "' + script + '".');
42+
console.log('Perhaps you need to update react-scripts?');
43+
console.log(
44+
'See: https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#updating-to-new-releases'
45+
);
46+
break;
47+
}

config/paths.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// const reactScriptsPath = 'react-scripts'
2+
const path = require('path');
3+
const fs = require('fs');
4+
5+
// const paths = require(`${reactScriptsPath}/config/paths`);
6+
7+
const appDirectory = fs.realpathSync(process.cwd());
8+
const resolveApp = relativePath => path.resolve(appDirectory, relativePath);
9+
10+
// paths.serverBuild = resolveApp('build/server');
11+
// paths.serverIndexJs = resolveApp('src/server/index.js');
12+
13+
module.exports = {
14+
serverBuild: resolveApp('build-server'),
15+
serverIndexJs: resolveApp('src/server.js'),
16+
}

0 commit comments

Comments
 (0)