Giter Club home page Giter Club logo

hx-node's Introduction

hx-node provides haxe type signatures to Node.js. 

Find me at https://github.com/cloudshift

In this project only the files required to use the Node.js type signatures are provided.
Previously I bundled the entire the haxe js dir, but I feel this was probably a confusion
for anyone coming from outside the haxe communtity. Other haxe integration features will
be bundled in separate libs.

Status
------

The base Node API is in js/Node.hx. 

Compiling with haxe
-------------------

For example, file Ex1.hx

import js.Node;

class Ex1 {
   public static function main() {
      trace(Node.process.memoryUsage());
      trace(Node.process.memoryUsage().heapTotal);

      Node.dns.resolve("cloudshift.cl","A",function(err,ips:Array<Dynamic>) {
          trace(ips);
          });
   }

}

Compile with

haxe -D nodejs -cp . -js ex1.js -main Ex1

where -cp . adds the current directory to the classpath which should include the provided js 
directory. You must add  -D nodejs to the compile line.

and then to execute

node ex1.js

Ex1.hx:6: {
	rss : 10039296, 
	vsize : 638578688, 
	heapTotal : 5005376, 
	heapUsed : 2497376
}
Ex1.hx:7: 5029952
Ex1.hx:11: [204.232.203.106]


To compile with haxelib

haxe -D nodejs -lib nodejs .... etc



hx-node's People

Contributors

cloudshift avatar sledorze avatar

Stargazers

曹文忠 avatar  avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.