0%

使用 moment 包,官网地址链接

将时间戳转换成日期格式:

简单的一句代码
var date = new Date(时间戳); //获取一个时间对象

阅读全文 »

Nginx配置参数中文说明

.\conf\ - 配置文件目录
.\conf\nginx.conf - 主配置文件
.\html\ - 默认网站文件位置
.\log\ - 默认日志文件位置
HTTP默认端口: TCP 80
HTTPS默认端口:* TCP 443

阅读全文 »

SERVER (APP.JS)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const app = require('express')()
, server = require('http').createServer(app)
, io = require('socket.io').listen(server);

server.listen(80);

app.get('/', function (req, res) {
res.sendfile(__dirname + '/index.html');
});

io.sockets.on('connection', function (socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});
});
阅读全文 »


构建对象:

1
AV.Object.extend('className') 所需的参数 className 则表示对应的表名

保存对象:

1
2
3
4
5
className.save().then(function (todo) {
console.log('objectId is ' + todo.id);
}, function (error) {
console.error(error);
});
阅读全文 »

mongodump

mongodump -h dbhost -d dynamo -c collection -o dbdirectory -u uesrname -p pwd其中-h 是数据库地址,127.0.0.1 -d 是数据库名字 context -o 存储的地址 如果省略就在当前目录下保存 -u 是用户名 -p 是密码

阅读全文 »

在使用生成SSH指令的时候,在第一条命令时可修改路径和文件名,没有后缀的是密匙,添加到本地的ssh-agent后缀.pub的是公匙,添加到github或者gitlab上.

重点在于ssh-agent,首先打开ssh-agent

ssh-agent bash

然后

ssh-add ~/.ssh/文件名 //没有后缀的那个

阅读全文 »