how add marks to directory in node js
up vote
0
down vote
favorite
this is the structure of my node app
I'm trying to import auth.js
file to user.js
file.
using this statement import working fine.
const auth = require('./../controllers/auth')
but I seen some of project use app
mask to root
directory like below.
const auth = require('app/controllers/auth')
still I cannot figure it out.
can you help me to figure it out?
node.js express
add a comment |
up vote
0
down vote
favorite
this is the structure of my node app
I'm trying to import auth.js
file to user.js
file.
using this statement import working fine.
const auth = require('./../controllers/auth')
but I seen some of project use app
mask to root
directory like below.
const auth = require('app/controllers/auth')
still I cannot figure it out.
can you help me to figure it out?
node.js express
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
this is the structure of my node app
I'm trying to import auth.js
file to user.js
file.
using this statement import working fine.
const auth = require('./../controllers/auth')
but I seen some of project use app
mask to root
directory like below.
const auth = require('app/controllers/auth')
still I cannot figure it out.
can you help me to figure it out?
node.js express
this is the structure of my node app
I'm trying to import auth.js
file to user.js
file.
using this statement import working fine.
const auth = require('./../controllers/auth')
but I seen some of project use app
mask to root
directory like below.
const auth = require('app/controllers/auth')
still I cannot figure it out.
can you help me to figure it out?
node.js express
node.js express
asked Nov 11 at 7:43
Gayan
223
223
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
if you want to do something like that you need to use variable and you can do it like that
const path = require('path');
const app_root = path.dirname(require.main.filename);
And then
const auth = require(`${app_root}/controllers/auth`)
*Note that this is the reference to the folder where your main file is located
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
if you want to do something like that you need to use variable and you can do it like that
const path = require('path');
const app_root = path.dirname(require.main.filename);
And then
const auth = require(`${app_root}/controllers/auth`)
*Note that this is the reference to the folder where your main file is located
add a comment |
up vote
0
down vote
if you want to do something like that you need to use variable and you can do it like that
const path = require('path');
const app_root = path.dirname(require.main.filename);
And then
const auth = require(`${app_root}/controllers/auth`)
*Note that this is the reference to the folder where your main file is located
add a comment |
up vote
0
down vote
up vote
0
down vote
if you want to do something like that you need to use variable and you can do it like that
const path = require('path');
const app_root = path.dirname(require.main.filename);
And then
const auth = require(`${app_root}/controllers/auth`)
*Note that this is the reference to the folder where your main file is located
if you want to do something like that you need to use variable and you can do it like that
const path = require('path');
const app_root = path.dirname(require.main.filename);
And then
const auth = require(`${app_root}/controllers/auth`)
*Note that this is the reference to the folder where your main file is located
answered Nov 11 at 8:15
Ariel Henryson
684511
684511
add a comment |
add a comment |
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%2f53246778%2fhow-add-marks-to-directory-in-node-js%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