Skip to content

ChenJiaH/jm-copy-base64

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

jm-copy-base64

通过base64自动复制文件的实用node模块

安装

    npm install jm-copy-base64

方法

encode(filePath)

将filePath路径的文件转为base64格式的Buffer,返回该Buffer。 注意:这里用的是同步读取,若该path指向不为文件,将会自动抛出错误

decode(filePath, saveFilePath)

将filePath路径的文件转为base64格式的Buffer,将该Buffer进行decode处理,生成新文件到saveFilePath下。

用法

请在node项目中使用,因为它依赖node.js的fs模块。

    // import copyBase64 from 'jm-copy-base64'; // ES6
    var copyBase64 = require('jm-copy-base64');
    copyBase64.asyc("root/parent/child")

License

MIT

About

🆒A useful node_module to copy file by base64.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published