Skip to content

Commit 133c026

Browse files
committed
Add install section and examples in the README.
1 parent b5010ef commit 133c026

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

README.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
<div align="center">
2-
<a href="https://metacall.io" target="_blank"><img src="https://raw.githubusercontent.com/metacall/core/master/deploy/images/logo.png" alt="METACALL" style="max-width:100%; margin: 0 auto;" width="80" height="80">
3-
<h1><b>MetaCall Polyglot Runtime</b></h1></a>
2+
<a href="https://metacall.io" target="_blank"><img src="https://raw.githubusercontent.com/metacall/core/master/deploy/images/logo.png" alt="METACALL" style="max-width:100%; margin: 0 auto;" width="80" height="80"></a>
3+
<h1><b>MetaCall Polyglot Runtime</b></h1>
44
<a href="https://metacall.io">MetaCall.io</a> |
5-
<a href="https://github.com/metacall/install">Install</a> |
5+
<a href="https://github.com/metacall/core/blob/master/README.md#install">Install</a> |
66
<a href="https://github.com/metacall/core/blob/master/docs/README.md">Docs</a>
77
</div>
88
<div align="center">
9+
<a href="#badges"></a>
10+
911
<a href="https://t.me/joinchat/BMSVbBatp0Vi4s5l4VgUgg" alt="Discord">
1012
<img src="https://img.shields.io/static/v1?label=metacall&message=join&color=blue&logo=telegram&style=flat" /></a>
1113

@@ -31,7 +33,7 @@ def sum(a, b):
3133

3234
`main.js`
3335
``` javascript
34-
const { sum } = require('sum.py');
36+
const { sum } = require('./sum.py');
3537

3638
sum(3, 4); // 7
3739
```
@@ -41,5 +43,18 @@ sum(3, 4); // 7
4143
metacall main.js
4244
```
4345

44-
**MetaCall** is an extensible, embeddable and interoperable polyglot runtime. It supports NodeJS, Vanilla JavaScript, TypeScript, Python, Ruby, C#, Go, C, C++, Rust, D, Cobol [and more](https://github.com/metacall/core/blob/master/docs/README.md#2-language-support). Use the [installer](https://github.com/metacall/install) and try [some examples](https://github.com/metacall/beautifulsoup-express-example).
46+
**MetaCall** is a extensible, embeddable and interoperable cross-platform polyglot runtime. It supports NodeJS, Vanilla JavaScript, TypeScript, Python, Ruby, C#, Go, C, C++, Rust, D, Cobol [and more](https://github.com/metacall/core/blob/master/docs/README.md#2-language-support).
47+
48+
## Install
49+
50+
The easiest way to install **METACALL** is the following:
51+
52+
``` sh
53+
curl -sL https://raw.githubusercontent.com/metacall/install/master/install.sh | sh
54+
```
55+
56+
For more information about other install methodologies and platforms or Docker, check the [install documentation](https://github.com/metacall/core/blob/master/docs/README.md#41-installation).
57+
58+
## Examples
4559

60+
You can find a complete [list of examples in the documentation](https://github.com/metacall/core/blob/master/docs/README.md#43-examples). If you are interested in submitting new examples, please [contact us in our chats](#badges).

0 commit comments

Comments
 (0)