利用Node.js获取项目根目录的小技巧
假设我们的js文件写在server目录中,但是我们的资源文件存储在app/img目录中。 实现功能 如下图,我们需要在server/index.js文件中使用fs读取app/img/favicon.ico文件。 实现方法 在node.js只提供了一个 dirname全局变量。通过 dirname可以获得“C:\wwwroot\yidata\server”。这时需要用到path。 首先 import path from 'path'; (ES6)或var path = require ( 'path ' ); path.join(dirname,'../') 即可获取到node.js的项目根
用户评论
推荐下载
-
Node.js devtool通过ChromeDevTools运行Node.js程序
devtool - 通过Chrome Dev Tools运行Node.js程序
17 2020-07-19 -
Node.js node.js七牛云文件上传
node.js 七牛云文件上传
34 2020-08-08 -
weather node.js入门级node.js源码
weather-node.js 入门指南node.js
19 2021-02-22 -
Node.js路由
Node.js 路由 我们要为路由提供请求的 URL 和其他需要的 GET 及 POST 参数,随后路由需要根据这些数据来执行相应的代码。 因此,我们需要查看 HTTP 请求,从中提取出请求的 URL
5 2021-01-04 -
Node.js函数
Node.js 函数 在JavaScript中,一个函数可以作为另一个函数的参数。我们可以先定义一个函数,然后传递,也可以在传递参数的地方直接定义函数。 Node.js中函数的使用与Javascrip
8 2021-01-03 -
Beginning Node.js
Beginning Node.js is your step-by-step guide to learning all the aspects of creating maintainable No
10 2020-12-20 -
Node.js Streamagithubeventfeedintoahypercore
Stream a github event feed into a hypercore
8 2020-12-23 -
node.js pdf
node.js pdf
10 2020-10-19 -
Node.js Androiddynamicinstrumentationframework
Android dynamic instrumentation framework
12 2020-09-01 -
Node.js TechCrunchReaderforHackers
TechCrunch Reader for Hackers -
12 2020-09-15
暂无评论