3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

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

Last updated at Posted at 2020-02-18

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

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

↓foo.png

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

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?