insomnia/plugins/insomnia-plugin-file/index.js
Gregory Schier 4901f03041 Add Prettier
2018-06-25 13:42:50 -04:00

23 lines
399 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');
}
}
];