Low-code programming for event-driven applications Latest version: v4.0.5 (npm) Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways. It provides a browser-based editor that makes it easy to wire together flows using the wide range of nodes in the palette that can be deployed to its runtime in a single-click. Features Get Started
I got this code from a different SO question, but node complained to use process.stdin.setRawMode instead of tty, so I changed it. Before: var tty = require("tty"); process.openStdin().on("keypress", function(chunk, key) { if(key && key.name === "c" && key.ctrl) { console.log("bye bye"); process.exit(); } }); tty.setRawMode(true); After: process.stdin.setRawMode(true); process.stdin.on("keypress",
node.js のファイル操作の方法まとめです。 ファイル操作に関する公式モジュール fs があるのでそれを使って操作していきます。 非同期処理と同期処理が出来るメソッドがそれぞれ用意されていますが、非同期処理のほうが断然早いはずなので取り敢えず非同期での処理をまとめてみます。 参考:File System(公式ドキュメント) //ファイル操作モジュールの追加 var fs = require('fs'); //ファイル読み込み関数 function readFile(path) { fs.readFile(path, 'utf8', function (err, data) { //エラーの場合はエラーを投げてくれる if (err) { throw err; } //ここに処理 console.log(data); }); } //使用例 readFile("test.txt");引数
前回まででTypeScriptを使ってフロントエンドJavaScriptをビルドする話を書きましたが、TypeScrptに慣れてしまうとES2015で書く気にはなれません。 当然のようにサーバーサイドもTypeScriptでコードを書き始めたのですが、ビルドにフロントエンドでも使っていたWebPackを採用して少しハマったので共有します。 やりたかったこと TypeScriptでsocket.ioを使ったソケットサーバーを書きたい 変更検知でビルド自動化したい glup/grunt抜きでWebPackでやりたい 環境 Mac OS X El Capitan node.js v5.7.1 / npm v3.6.0 TypeScript v1.9.0-dev.20160312 typings v0.7.9 webpack v1.12.14 上3つのモジュールは npm でグローバルインストール
A real cross platforms AES encryption-decryption solution. Support Java,javascript,typescript,C,nodeJs,Android,IOS... 中文说明 How to use AES cross platforms Make these paras to be same in all platforms. cipher mode: ECB,CBC,CFB,OFB,CTR,XTS... key size: 128, 256 iv: init vector padding: NoPadding,ZeroPadding,PKCS5Padding,PKCS7Padding,ISO10126Padding,ANSI X.923... key: the key for encription and decryp
How do I use a local version of a module in node.js. For example, in my app, I installed coffee-script: npm install coffee-script This installs it in ./node_modules and the coffee command is in ./node_modules/.bin/coffee. Is there a way to run this command when I'm in my project's main folder? I guess I'm looking for something similar to bundle exec in bundler. Basically, I'd like to specify a ver
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く