| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
13年前发布

Node.js的.net扩展 node.net

node.js 的.net扩展, 使node.js的js代码可以调用 .NET 方法。

  1. Read this short description on how to build a simple nodejs addon on windows.
  2. Download node.js sources.
  3. Make sure you have Python 2.x installed (not 3.x).
  4. Build node sources by running `vcbuild.bat'.
  5. Verify that node.lib is located under the Debug/ directory.

Creating a .Net node addon

  1. Fire up VS2010 and create a new C++ Empty CLR project.Node.js的.net扩展 node.net
  2. Open the project properties (Click Alt+Enter while the project file is selected)
  3. Set the project type and extension project type should be dll and the extension should be .node Node.js的.net扩展 node.net
  4. Set the include directories as follows (replace paths with the local nodejs source path).Node.js的.net扩展 node.net
  5. Set the libraries directories as follows (replace paths with the local nodejs source path).Node.js的.net扩展 node.net
  6. Add a new CPP file and call it SOME_PREFIX_Addon.cpp. This file will hold the actual addon definitions and dll entry point.
  7. Open the property pages of the new CPP file you created.
  8. Change the "Common Language Runtime Support" option to No Common Language RunTime Support
    Node.js的.net扩展 node.net

项目主页:http://www.open-open.com/lib/view/home/1338389339589

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1338389339589.html
Node.js Node.js扩展