Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 931 Bytes

README.md

File metadata and controls

49 lines (33 loc) · 931 Bytes

qrEncil

Make your QR codes stencilproof. Generates svg and png from string input.

Getting Started

Install via npm

$ npm i qrencil

Create your application file index.js:

$ touch index.js

And insert your prefered content:

const {qrEncil} = require('qrencil');

let qrContent = "Some content here";

//  Outputs .svg and .png file
qrEncil(qrContent);

Finally run the script

$ node index.js

To Do

  • Optimize svg output
  • Add custom params
  • Find lightweight alternative for PNG generation.

Authors

License

This project is licensed under the MIT License

Acknowledgments