原文链接:http://www.sqlitetutorial.net/sqlite-nodejs/connect/…
Realm is an ACID compliant object database. In this lesson, you will learn how to install Realm, define schemas for your data, perform CRUD operations and persist your data to the filesystem. var Realm = require('realm'); const PetShema = { name: 'Pe…
概述 LIGHTX-CMS 是我基于 Node.js,Express.js 以及 SQLite 3 搭建的个人博客发布系统. 项目本身可以拿来部署个人博客网站,同时我认为其也适合用以新手学习 Node.js 的基本操作与特性. 项目地址 查看演示 欢迎 Fork! 以下为项目的 README LIGHTX-CMS Description This is a dynamic blog system that based on Node.js, Express.js, SQLite3 and Boo…
错误来源:Centos 7 上使用nginx为Node.js配置反向代理时产生(13: Permission denied) while connecting to upstream的错误 nginx配置文件内容如下: upstream node_server { server 127.0.0.1:5000 max_fails=3 fail_timeout=4s; server 127.0.0.1:5001 max_fails=3 fail_timeout=4s; } server { list…
简介两个数据库: Node.js 连接 MySQL Node.js 连接 MongoDB Node.js 连接 MySql 导入已有数据库: unsw@unsw-UX303UB$ mysql -u root -p #登录 Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 44 Server version: 5.5.59-0ubuntu0.14.…
原文: http://mherman.org/blog/2015/09/10/testing-node-js-with-mocha-and-chai/#.ViO8oBArIlJ 为什么要测试? 在此之前了解为什么要测试非常重要. 通过下面的地址获取一个Node/Express的简单的CRUD应用: $ git clone https://github.com/mjhea0/node-mocha-chai-tutorial.git $ git checkout tags/v1 现在可以通过食用cu…
原文: http://cwbuecheler.com/web/tutorials/2013/node-express-mongo/ 原文的源代码在此 太多的教程教你些一个Hello, World!了, 但是仅凭Hello, World! 是找不到工作的, 因此有了这篇教程. PART I – 安装开发环境 作者是在Windows 8上开发的. STEP 1 – 安装NODE.JS 打开 Node.js website 点击绿色的安装按钮. 运行安装程序就安装好了, 就是这么简单. 现在你已经安装…
(文章是从我的个人主页上粘贴过来的,大家也可以访问我的主页 www.iwangzheng.com) node.js模拟简易漂流瓶,页面有扔瓶子和捡瓶子的功能,一个瓶子只能被捡到一次,阅读完就置状态位,如果没有瓶子,提示无瓶子,等等,功能很丰富哦,let‘s   go (1)安装python,node,由于这是很久之前装的了,此次不再重复. (2)下载sqlite3数据库,网址为http://www.sqlite.org/download.html, 选择:Precompiled Binaries…
上一篇,纯粹玩 ESP8266,写入了 init.lua 能收发 UDP.这次拿 BBB 开刀,用 BBB host 一个 web server ,用于与用户交互,数据来自 ESP8266 的 UDP 交互结果.本来,ESP8266 能直接用 TCP,但我希望广播 UDP 来做自动发现,那服务端和设备端统一全部用 UDP 交互吧,服务端再通过 HTTP 与客户端交互. 以下过程,与 Linux 上面搭 web 没有区别.我选择用 node.js,没有什么特殊原因,只是因为它本来就跟着 BBB d…
mysql A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed. mysql       Table of Contents Install Introduction Contributors Sponsors Community Establishing connections Connection options SSL op…