insomnia/plugins/insomnia-plugin-file/index.js
2018-12-12 12:36:11 -05:00

23 lines
403 B
JavaScript

const fs = require('fs');
module.exports.templateTags = [
{
name: 'file',
displayName: 'File',
description: 'read contents from a file',
args: [
{
displayName: 'Choose File',
type: 'file',
},
],
run(context, path) {
if (!path) {
throw new Error('No file selected');
}
return fs.readFileSync(path, 'utf8');
},
},
];