All Projects → IonicaBizau → Node Fortran

IonicaBizau / Node Fortran

Licence: mit
💀 Fortran bridge for Node.js which allows you to run Fortran code from Node.js.

Programming Languages

fortran
972 projects

Projects that are alternatives of or similar to Node Fortran

Cascade
Dart-like cascade expressions in Rust
Stars: ✭ 84 (-1.18%)
Mutual labels:  hacktoberfest
Azuracast
A self-hosted web radio management suite, including turnkey installer tools for the full radio software stack and a modern, easy-to-use web app to manage your stations.
Stars: ✭ 1,253 (+1374.12%)
Mutual labels:  hacktoberfest
Eleicoes Brasil
Scripts para capturar dados do Repositório de Dados Eleitorais do TSE, limpá-los, normalizá-los e agrupá-los
Stars: ✭ 85 (+0%)
Mutual labels:  hacktoberfest
Applications Menu
Applications Menu for elementary OS and the Pantheon desktop environment
Stars: ✭ 84 (-1.18%)
Mutual labels:  hacktoberfest
Weakforced
Anti-Abuse for servers at authentication time
Stars: ✭ 84 (-1.18%)
Mutual labels:  hacktoberfest
Pytheory
Music Theory for Humans.
Stars: ✭ 1,260 (+1382.35%)
Mutual labels:  hacktoberfest
React Dashboard Design
⚡️ Implement of Vercel's Dashboard design in React
Stars: ✭ 83 (-2.35%)
Mutual labels:  hacktoberfest
Aiovk
vk.com API python wrapper for asyncio
Stars: ✭ 85 (+0%)
Mutual labels:  hacktoberfest
Entando Core
The entando-core is the repository of the Entando App Engine for Entando 5.X and is the heart of the Entando Platform by providing the primary out-of-the-box services for developing applications.
Stars: ✭ 84 (-1.18%)
Mutual labels:  hacktoberfest
Bugbounty Starter Notes
bug bounty hunters starter notes
Stars: ✭ 85 (+0%)
Mutual labels:  hacktoberfest
Exram.gremlinq
A .NET object-graph-mapper for Apache TinkerPop™ Gremlin enabled databases.
Stars: ✭ 84 (-1.18%)
Mutual labels:  hacktoberfest
Orange3 Text
🍊 📄 Text Mining add-on for Orange3
Stars: ✭ 83 (-2.35%)
Mutual labels:  hacktoberfest
Hacktoberfest2k20
Anyone can send any type of code , I will merge it Asap
Stars: ✭ 85 (+0%)
Mutual labels:  hacktoberfest
Ngx Indexed Db
A service that wraps IndexedDB database in an Angular service. It exposes very simple observables API to enable the usage of IndexedDB without most of it plumbing.
Stars: ✭ 84 (-1.18%)
Mutual labels:  hacktoberfest
Typerep Map
⚡️Efficient implementation of Map with types as keys
Stars: ✭ 85 (+0%)
Mutual labels:  hacktoberfest
Awesome Laravel Zero
👋 START HERE! A curated list of Laravel Zero libraries, resources and projects
Stars: ✭ 84 (-1.18%)
Mutual labels:  hacktoberfest
Cultofthepartyparrot.com
PARTY OR DIE
Stars: ✭ 1,254 (+1375.29%)
Mutual labels:  hacktoberfest
Garth
🥁 A really basic theme for Jekyll
Stars: ✭ 85 (+0%)
Mutual labels:  hacktoberfest
Collaboration For Beginners
A Beginner's Guide to Contributing in an Open Source Project.
Stars: ✭ 86 (+1.18%)
Mutual labels:  hacktoberfest
Awesome Visjs
🕶️ A curated list of resources around vis.js
Stars: ✭ 85 (+0%)
Mutual labels:  hacktoberfest

fortran

fortran

Support me on Patreon Buy me a book PayPal Ask me anything Version Downloads Get help on Codementor

Buy Me A Coffee

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

fortran

☁️ Installation

# Using npm
npm install --save fortran

# Using yarn
yarn add fortran

Prerequisites

You have to install the Fortran compiler:

# Ubuntu
sudo apt-get install gfortran
sudo apt-get install fort77

# OS X
brew install gcc

📋 Example

const fotran = require("fortran");

// Let's run some Fortran stuff
fotran(`
      program hello
          print *, "Hello World!"
      end program hello
`, (err, data) => {
    console.log(err || data);
    // => Hello World
});

❓ Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
  2. For bug reports and feature requests, open issues. 🐛
  3. For direct and quick help, you can use Codementor. 🚀

📝 Documentation

fortran(input, callback)

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.

😋 How to contribute

Have an idea? Found a bug? See how to contribute.

💖 Support my projects

I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:

  • Starring and sharing the projects you like 🚀

  • Buy me a book—I love books! I will remember you after years if you buy me one. 😁 📖

  • PayPal—You can make one-time donations via PayPal. I'll probably buy a coffee tea. 🍵

  • Support me on Patreon—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).

  • Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

Thanks! ❤️

📜 License

MIT © Ionică Bizău

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].