node project does not package (and run) correctly on ubuntu
I have a node project that compiles and runs perfectly fine on my local mac box. However, when i git clone, npm install and run it on a remote (ubuntu) box it almost seems like the packaging is not working correctly.
Here is the stack trace
Error: Cannot find module './MyModule'
at Function.Module._resolveFilename (module.js:547:15)
at Function.Module._load (module.js:474:25)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/myproject/be/util/index.js:7:20)
at Module._compile (module.js:652:30)
at loader (/myproject/node_modules/babel-register/lib/node.js:144:5)
at Object.require.extensions.(anonymous function) [as .js] (/myproject/node_modules/babel-register/lib/node.js:154:7)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/myproject/be/fetch.js:3:1)
at Module._compile (module.js:652:30)
at loader (/myproject/node_modules/babel-register/lib/node.js:144:5)
The node and npm versions are the same. Any pointers on where i could look?
node.js npm
add a comment |
I have a node project that compiles and runs perfectly fine on my local mac box. However, when i git clone, npm install and run it on a remote (ubuntu) box it almost seems like the packaging is not working correctly.
Here is the stack trace
Error: Cannot find module './MyModule'
at Function.Module._resolveFilename (module.js:547:15)
at Function.Module._load (module.js:474:25)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/myproject/be/util/index.js:7:20)
at Module._compile (module.js:652:30)
at loader (/myproject/node_modules/babel-register/lib/node.js:144:5)
at Object.require.extensions.(anonymous function) [as .js] (/myproject/node_modules/babel-register/lib/node.js:154:7)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/myproject/be/fetch.js:3:1)
at Module._compile (module.js:652:30)
at loader (/myproject/node_modules/babel-register/lib/node.js:144:5)
The node and npm versions are the same. Any pointers on where i could look?
node.js npm
It's complaining that it either cannot find the fileMyModule.js
orMyModule/index.js
. Do you have the file in ubuntu?
– slebetman
Nov 22 '18 at 3:12
add a comment |
I have a node project that compiles and runs perfectly fine on my local mac box. However, when i git clone, npm install and run it on a remote (ubuntu) box it almost seems like the packaging is not working correctly.
Here is the stack trace
Error: Cannot find module './MyModule'
at Function.Module._resolveFilename (module.js:547:15)
at Function.Module._load (module.js:474:25)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/myproject/be/util/index.js:7:20)
at Module._compile (module.js:652:30)
at loader (/myproject/node_modules/babel-register/lib/node.js:144:5)
at Object.require.extensions.(anonymous function) [as .js] (/myproject/node_modules/babel-register/lib/node.js:154:7)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/myproject/be/fetch.js:3:1)
at Module._compile (module.js:652:30)
at loader (/myproject/node_modules/babel-register/lib/node.js:144:5)
The node and npm versions are the same. Any pointers on where i could look?
node.js npm
I have a node project that compiles and runs perfectly fine on my local mac box. However, when i git clone, npm install and run it on a remote (ubuntu) box it almost seems like the packaging is not working correctly.
Here is the stack trace
Error: Cannot find module './MyModule'
at Function.Module._resolveFilename (module.js:547:15)
at Function.Module._load (module.js:474:25)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/myproject/be/util/index.js:7:20)
at Module._compile (module.js:652:30)
at loader (/myproject/node_modules/babel-register/lib/node.js:144:5)
at Object.require.extensions.(anonymous function) [as .js] (/myproject/node_modules/babel-register/lib/node.js:154:7)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/myproject/be/fetch.js:3:1)
at Module._compile (module.js:652:30)
at loader (/myproject/node_modules/babel-register/lib/node.js:144:5)
The node and npm versions are the same. Any pointers on where i could look?
node.js npm
node.js npm
edited Nov 22 '18 at 2:09
nev.m
asked Nov 22 '18 at 0:37
nev.mnev.m
1,02822239
1,02822239
It's complaining that it either cannot find the fileMyModule.js
orMyModule/index.js
. Do you have the file in ubuntu?
– slebetman
Nov 22 '18 at 3:12
add a comment |
It's complaining that it either cannot find the fileMyModule.js
orMyModule/index.js
. Do you have the file in ubuntu?
– slebetman
Nov 22 '18 at 3:12
It's complaining that it either cannot find the file
MyModule.js
or MyModule/index.js
. Do you have the file in ubuntu?– slebetman
Nov 22 '18 at 3:12
It's complaining that it either cannot find the file
MyModule.js
or MyModule/index.js
. Do you have the file in ubuntu?– slebetman
Nov 22 '18 at 3:12
add a comment |
1 Answer
1
active
oldest
votes
For some reason it was this syntax inside my 'util/index.js' that was throwing errors on ubuntu (but worked fine on my mac)
export * from './FileA'
export * from './FileB'
export * from './FileC'
I just pasted all the contents of file's A,B and C inside 'util/index.js' and it started working.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53422375%2fnode-project-does-not-package-and-run-correctly-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
For some reason it was this syntax inside my 'util/index.js' that was throwing errors on ubuntu (but worked fine on my mac)
export * from './FileA'
export * from './FileB'
export * from './FileC'
I just pasted all the contents of file's A,B and C inside 'util/index.js' and it started working.
add a comment |
For some reason it was this syntax inside my 'util/index.js' that was throwing errors on ubuntu (but worked fine on my mac)
export * from './FileA'
export * from './FileB'
export * from './FileC'
I just pasted all the contents of file's A,B and C inside 'util/index.js' and it started working.
add a comment |
For some reason it was this syntax inside my 'util/index.js' that was throwing errors on ubuntu (but worked fine on my mac)
export * from './FileA'
export * from './FileB'
export * from './FileC'
I just pasted all the contents of file's A,B and C inside 'util/index.js' and it started working.
For some reason it was this syntax inside my 'util/index.js' that was throwing errors on ubuntu (but worked fine on my mac)
export * from './FileA'
export * from './FileB'
export * from './FileC'
I just pasted all the contents of file's A,B and C inside 'util/index.js' and it started working.
answered Nov 22 '18 at 18:27
nev.mnev.m
1,02822239
1,02822239
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53422375%2fnode-project-does-not-package-and-run-correctly-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
It's complaining that it either cannot find the file
MyModule.js
orMyModule/index.js
. Do you have the file in ubuntu?– slebetman
Nov 22 '18 at 3:12