html-to-base64-image 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +11 -2
  2. package/readme.md +1 -1
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "html-to-base64-image",
3
- "version": "1.0.0",
3
+ "description": "Html to base64 Image",
4
+ "version": "1.0.1",
4
5
  "main": "index.js",
5
6
  "repository": "git@github.com:thangved/html-to-base64-image.git",
6
7
  "author": "thangved <thangved02@gmail.com>",
@@ -14,5 +15,13 @@
14
15
  "license": "MIT",
15
16
  "devDependencies": {
16
17
  "eslint": "^8.16.0"
17
- }
18
+ },
19
+ "keywords": [
20
+ "nodejs",
21
+ "html",
22
+ "base64",
23
+ "image",
24
+ "html to image",
25
+ "thangved"
26
+ ]
18
27
  }
package/readme.md CHANGED
@@ -13,7 +13,7 @@ yarn add html-to-base64-image
13
13
  ## Usage
14
14
 
15
15
  ```js
16
- const htmlToBase64Image = require('../index');
16
+ const htmlToBase64Image = require('html-to-base64-image');
17
17
 
18
18
  htmlToBase64Image('<button>Hello</button>').then((data) => {
19
19
  console.log(data);