Quantcast
Channel: Node.jsタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8916

Node.js QRコードを生成する

$
0
0

簡単にQRコードを生成できたのでメモ書き

$ mkdir qr 
$ cd qr
$ npm init
$ npm install qrcode
$ touch index.js
index.js
constQRCode=require('qrcode');QRCode.toFile('foo.png','Hello World');
$ node index.js

↓foo.png

スクリーンショット 2020-02-18 23.09.46.png


Viewing all articles
Browse latest Browse all 8916

Trending Articles