Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/charlesstover/base64-encode-file
Encodes an entire file via base64.
https://github.com/charlesstover/base64-encode-file
base64 base64-encoding base64encode base64encoder es6 javascript js node node-js nodejs
Last synced: 10 days ago
JSON representation
Encodes an entire file via base64.
- Host: GitHub
- URL: https://github.com/charlesstover/base64-encode-file
- Owner: CharlesStover
- License: mit
- Created: 2018-07-11T16:47:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-11T16:52:59.000Z (over 6 years ago)
- Last Synced: 2024-05-10T18:58:08.299Z (6 months ago)
- Topics: base64, base64-encoding, base64encode, base64encoder, es6, javascript, js, node, node-js, nodejs
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# base64-encode-file
Encodes an entire file via base64.## Use
`node index.js FILENAME` will take a the file `FILENAME` and output `FILENAME.base64`.## Examples
`node index.js font.woff` will output `font.woff.base64`.## Use Cases
The primary, personal purpose of this project was to convert font files to base64 so as to be able to include them inline in CSS.