metacall

Call Python, C#, Ruby... functions from NodeJS (a NodeJS Port for MetaCall)

Usage no npm install needed!

<script type="module">
  import metacall from 'https://cdn.skypack.dev/metacall';
</script>

README

M E T A C A L L

M E T A C A L L

A library for providing inter-language foreign function interface calls

Abstract

METACALL is a library that allows calling functions, methods or procedures between programming languages. With METACALL you can transparently execute code from / to any programming language, for example, call Python code from NodeJS.

Install

Install MetaCall binaries first (click here for additional info about the install script):

bash <(curl -sL https://raw.githubusercontent.com/metacall/install/master/install.sh)

Example

sum.py

def sum(a, b):
  return a + b

main.js

const { sum } = require('./sum.py'); // Import Python script

sum(3, 4); // 7
metacall main.js