nodejs 2017

Posted gyz418

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs 2017相关的知识,希望对你有一定的参考价值。

a.js

// 运行  node a.js

var path = require(‘path‘);
console.log(path.resolve()); // 不传参,会返回当前文件的绝对路径 
console.log(__dirname);  // 也是当前文件的绝对路径

console.log(path.resolve(__dirname));
console.log(path.resolve(__dirname,‘../dist/index.html)); 
// 路径组合成一个绝对路径  


var b = require(‘./b‘);
console.log(‘b.env: ‘ + b.build.env)
console.log(‘b.index: ‘ + b.build.index)

b.js

var path = require(‘path‘)
module.exports = {
    build:{
        index: path.resolve(__dirname,‘../dist/index.html‘),
        env: ‘testOne‘
    }
}

 

以上是关于nodejs 2017的主要内容,如果未能解决你的问题,请参考以下文章

javascript 用于在节点#nodejs #javascript内设置react app的代码片段

NodeJs GraphQL 片段解析器

学习笔记:python3,代码片段(2017)

有没有办法在nodejs pdfkit中使一行中的文本片段变为粗体?

NodeJs异步的执行过程

KDoc:插入代码片段