码迷,mamicode.com
首页 >  
搜索关键字:fs    ( 2288个结果
Solve Error: Run 'hexo g', got 'Killed'
When you run hexo g on any web instances, like on AWS or Azure, you might get the following error: (node:3568) ExperimentalWarning: The fs.promises AP ...
分类:其他好文   时间:2021-04-12 12:28:51    阅读次数:0
node 带mongodb
let http = require('http');// 引入url模块 获取域名后面的urllet path = require('path');let fs = require('fs');let url = require('url');let ejs = require('ejs');le ...
分类:数据库   时间:2021-04-07 10:47:53    阅读次数:0
node routes.js
let path = require('path');let url = require('url');let fs = require('fs');let ejs = require('ejs');let tools = require('./tools');let routes = { 'sta ...
分类:Web程序   时间:2021-04-07 10:47:38    阅读次数:0
egg.js index.html, 多个静态资源配置问题
1.egg.static,访问首页,有public; 解决:default.config.js 中,增加配置,当访问到固定的路径时,返回指定的页面; config.siteFile = { '/numax':fs.readFileSync( path.join(appInfo.baseDir, 'a ...
分类:Web程序   时间:2021-04-07 10:39:16    阅读次数:0
字符设备驱动 以及Makefile
#include <linux/module.h> // module_init module_exit #include <linux/init.h> // __init __exit #include <linux/cdev.h> #include <linux/fs.h> #define MY ...
分类:其他好文   时间:2021-04-01 13:34:35    阅读次数:0
[Node.js] Resolve path problem in all envs (require.resolve)
When dealing with `fs` library, the common problem you will meet is the path to file. Different envs may have different way to handle the path. The be ...
分类:Web程序   时间:2021-03-30 13:42:21    阅读次数:0
node加密rsa公钥和python解密私钥的问题
node和python默认的rsa加密方式是不一样,要调整一下。 node代码: const fs = require('fs'); const NodeRSA = require('node-rsa'); const path = require('path').resolve(); const ...
分类:编程语言   时间:2021-03-29 11:41:58    阅读次数:0
oracle基础~linux整体性能优化
包括三方面 1 sysctl.conf //扩大文件句柄数 fs.aio-max-nr = 1048576 fs.file-max = 6815744 // 扩大共享内存段 影响SGA kernel.shmmax = 4294967295 共享内存段的最大字节尺寸(以字节为单位)推荐设置成内存的80 ...
分类:数据库   时间:2021-03-09 13:57:32    阅读次数:0
node.js 文件获取和文件属性相关
var fs = require('fs'); //获取当前目录下的全部文件 fs.readdir('./',function(err,files){ if(!err){ console.log(files); } }) //获取某个文件的属性信息 //引入第三方的时间格式化模块,安装方式命令行执行 ...
分类:Web程序   时间:2021-03-08 13:08:51    阅读次数:0
node.js 写文件
var str = 'node.js'; var fs = require('fs'); fs.writeFile('./a.txt',str,function(err){ if(err==null){ console.log('恭喜你,写入成功') }else{ console.log(err); ...
分类:Web程序   时间:2021-03-02 11:49:45    阅读次数:0
2288条   上一页 1 2 3 4 5 ... 229 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!