Fortran bridge for Node.js which allows you to run Fortran code from Node.js.
npm install fortran

![PayPal][paypal-donations]    
> Fortran bridge for Node.js which allows you to run Fortran code from Node.js.

``sh`
$ npm i --save fortran
sh
Ubuntu
sudo apt-get install gfortran
sudo apt-get install fort77OS X
brew install gcc
`:clipboard: Example
`js
const fotran = require("fortran");// Let's run some Fortran stuff
fotran(
, (err, data) => {
console.log(err || data);
// => Hello World
});
`:memo: Documentation
$3
Runs Fortran code from the Node.js side.#### Params
- String|Path
input: The Fortran code to execute, or a path to a Fortran file (generally having the .f extension).
- Function callback: The callback function called with err, stdout and stderr.:yum: How to contribute
Have an idea? Found a bug? See [how to contribute][contributing].:sparkles: Related
node.fortran—Execute Node.js from Fortran.
- cobol—COBOL bridge for NodeJS which allows you to run COBOL code from NodeJS.
- node.cobol`—Node.js bridge for COBOL which allows you to run Node.js code from COBOL.[MIT][license] © [Ionică Bizău][website]
[paypal-donations]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RVXDDLKKLQRJW
[donate-now]: http://i.imgur.com/6cMbHOC.png
[license]: http://showalicense.com/?fullname=Ionic%C4%83%20Biz%C4%83u%20%3Cbizauionica%40gmail.com%3E%20(http%3A%2F%2Fionicabizau.net)&year=2016#license-mit
[website]: http://ionicabizau.net
[contributing]: /CONTRIBUTING.md
[docs]: /DOCUMENTATION.md