Create FDF files with nodejs
First of all you have to install node-gyp
npm -g install node-gyp rebuild
After that you can install the fdf module
git clone https://github.com/agrippa1994/nodejs-fdf.git
npm install nodejs-fdf/
rm -rf nodejs-fdf/
var fdf = require("fdf");
try{
console.log(fdf.createFDF("test.fdf", {field_name: "Filled field value"}));
} catch(e) {
console.log("Exception: " + e);
}