Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

formd

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

formd - npm Package Compare versions

Comparing version 0.0.4 to 0.1.4

5

package.json
{
"name": "formd",
"version": "0.0.4",
"version": "0.1.4",
"description": "Turn Google Form responses into markdown.",

@@ -22,5 +22,6 @@ "main": "./src/index.js",

"indian-ocean": "0.0.10",
"dsv": "0.0.3"
"dsv": "0.0.3",
"markdown-pdf": "~2.2.0"
},
"preferGlobal": true
}

2

README.md

@@ -24,5 +24,5 @@ Formd

That will create `responses.md` in the same directory as your input file, or if a Google key, the same directory as from where you're calling the command.
That will create `responses.md` and `responses.pdf` in the same directory as your input file, or if a Google key, the same directory as from where you're calling the command.
TODO, specify output file / output directory.
var fs = require('fs'),
request = require('request'),
dsv = require('dsv'),
io = require('indian-ocean');
io = require('indian-ocean'),
mdpdf = require('markdown-pdf');

@@ -41,3 +42,5 @@ function fetchGoogleSpreadsheet(key, cb){

fs.writeFileSync(outputFilePath, markdown);
mdpdf().from(outputFilePath).to(outputFilePath.replace('\.md','.pdf'), function () {
console.log('PDF written.')
})
});

@@ -44,0 +47,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc