GitHub上的nvm
2021-09-15 13:01:07 1.98MB node.js
1
nodejs的linux
2021-09-15 11:02:42 20.4MB node.js
1
-node.js- 本系统是一个完整的调查问卷系统。分为登录注册,后台管理,填写问卷,数据分析四大模块。前端技术为jQuery、angularJs。后台技术为node.js。数据库是MySQL。
2021-09-14 18:44:15 13.88MB JavaScript
1
Node.js+ws模块来制作的一个简易聊天室。
2021-09-14 18:04:31 7KB node
1
serialport - 读和写访问串行端口的Node.js
2021-09-13 10:59:25 1.06MB Node.js开发-硬件操作
1
node-serialport 是一个 Node.js 的包,用来对串口数据进行读写操作。基本示例代码:var SerialPort = require("serialport").SerialPort var serialPort = new SerialPort("/dev/tty-usbserial1", {   baudrate: 57600 }, false); // this is the openImmediately flag [default is true] serialPort.open(function (error) {   if ( error ) {     console.log('failed to open: ' error);   } else {     console.log('open');     serialPort.on('data', function(data) {       console.log('data received: '   data);     });     serialPort.write("ls\n", function(err, results) {       console.log('err '   err);       console.log('results '   results);     });   } });罗列所有串口:var serialPort = require("serialport"); serialPort.list(function (err, ports) {   ports.forEach(function(port) {     console.log(port.comName);     console.log(port.pnpId);     console.log(port.manufacturer);   }); });串口配置:baudRatedataBitsstopBitsparityrtsctsxonxoffxanyflowControlbufferSizeparserencodingdataCallbackdisconnectedCallbackplatformOptions - sets platform specific options, see below.目前已有很多项目在使用这个包进行串口处理:Johnny-Five - Firmata based Arduino Framework.Cylon.js - JavaScript Robotics, By Your Command.node-l8smartlight (source) A node library to control the L8 Smartlight via Bluetooth or USB portfirmata Talk natively to Arduino using the firmata protocol.tmpad source - a DIY midi pad using infrared, arduino, and nodejs. Videoduino - A higher level framework for working with Arduinos in node.js.Arduino Drinking Game Extravaganza - AKA "The Russian" a hexidecimal drinking game for geeks by Uxebu presented at JSConf EU 2011.Arduino controlling popcorn.js - Controlling a popcorn.js video with an Arduino kit.Robotic JavaScript - The first live presentation of the node-serialport code set as presented at JSConf EU 2010.devicestack - This module helps you to represent a device and its protocol.reflecta A communication protocol that combines Arduino Libraries and NodeJS into an integrated system.rc4pt-node - Control Popcorntime with an
2021-09-13 10:29:17 178KB 开源项目
1
使用 koa 写了一个小网站,上传 word 文档即可将 word 转成 html,并且有可编辑 html。编辑好了之后只需要点击上传就能将 html 生成访问链接
2021-09-10 10:24:15 79KB Node.js开发-其它杂项
1
安装node.js.doc
2021-09-09 18:06:56 720KB node.js
1
date: 2014-03-03 layout: post title: Node.js 学习笔记 description:Node.js learning notes categories: - nodejs - javascript tags: - nodejs
2021-09-09 16:06:57 1KB Node.js
1
主要介绍了vscode 的node.js debugger 的 launch.json 配置详情,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
2021-09-08 09:09:30 59KB vscode node.js debugger launch.json