node-addon-examples
Node.js C++ addon examples from http://nodejs.org/docs/latest/api/addons.html (by nodejs)
nan
Native Abstractions for Node.js (by nodejs)
node-addon-examples | nan | |
---|---|---|
3 | 6 | |
2,527 | 3,303 | |
0.2% | 0.2% | |
6.7 | 7.2 | |
10 days ago | 17 days ago | |
C++ | C++ | |
GNU General Public License v3.0 or later | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
node-addon-examples
Posts with mentions or reviews of node-addon-examples.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-08-14.
-
Vulnerabilities in NodeJS C/C++ add-on extensions
Looking at the provided examples, we can see that in some examples , assert is used to check the return value of some functions. However, if an assert is reached by tainted values (from the javascript code) during the program execution, it can lead to a crash (DoS). While reviewing some projects, we found several occurrences of reachable asserts in the code logic, so I thought it’s worth mentioning as part of the previous list.
-
Calling C++ from nodejs
Yeah, that's the only place I found a napi.h file, so I think tutorials using that are assuming the node-addon-api? Anyways checking out examples like this, https://github.com/nodejs/node-addon-examples/blob/7ca7b6d03c1acb72fe292b4be468009534a20ff3/2_function_arguments/node-addon-api/addon.cc, it actually looks pretty easy to use to call C++ functions in node
-
What should be the correct way to send to the front-end the napi_values I receive from the native-addon?
I am trying to communicate this native addon with the front-end. It consists of a prime number generator, when it is executed it writes to the console, I want it to send them via Sockets to the browser console.
nan
Posts with mentions or reviews of nan.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-12-02.
- C++ Addons no Node.js
- What's the "modern" way of creating a native addon for Node.js?
-
Node.js vs. Python: How to choose the best technology to develop your backend
TypeScript has gained popularity in recent years, and to put things into perspective, it has over 29 million weekly downloads on npm. According to the Stack Overflow 2021 developer survey, it is ranked as the third most-loved programing language, beating Python, Node.js, and JavaScript itself. To learn how to set up TypeScript with node, see this article.
-
How to read audio data from a 'MediaStream' object in a C++ addon
After sweating blood and tears I've finally managed to set up a Node C++ addon and shove a web-platform standard MediaStream object into one of its C++ methods for good. For compatibility across different V8 and Node.js versions, I'm using Native Abstractions for Node.js (nan):
- Node Bindings untuk binding dari C++ pada Node.js
- How do i integrate C++ backend with electron GUI?
What are some alternatives?
When comparing node-addon-examples and nan you can also consider the following projects:
Node-Torrent - This repository contains the torrent node source code written in C++.
execa - Process execution for humans
node-addon-api - Module for using Node-API from C++
node-pre-gyp - Node.js tool for easy binary deployment of C++ addons
Node-Core - This repository contains Node-Core's source code written in C++.
strip-bom - Strip UTF-8 byte order mark (BOM) from a string