edge-fs

1.0.1 • Public • Published

edge-fs

F# compiler for Edge.js.

This library is based on https://github.com/7sharp9/edge-fs all credit for original work goes to Dave Thomas.


Overview

Install edge and edge-fs modules:

npm install edge-js
npm install edge-fs

server.js:

var edge = require('edge-js');

var helloFs = edge.func('fs', function () {/*
    fun input -> async { 
        return "F# welcomes " + input.ToString()
    }
*/});

helloFs('Node.js', function (error, result) {
    if (error) throw error;
    console.log(result);
});

Run and enjoy:

node server.js
F# welcomes Node.js

Supported .NET frameworks

  • .NET 4.6.2
  • .NET Standard 2.0

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i edge-fs

      Weekly Downloads

      7

      Version

      1.0.1

      License

      MIT

      Unpacked Size

      22.2 MB

      Total Files

      15

      Last publish

      Collaborators

      • 7sharp9
      • agracio