How many types of api functions are there in node.js?
Answer / Rohit Ahirwar
There are primarily two types of API functions in Node.js:n
1. Built-in Modules: These are the core APIs provided by Node.js, such as fs (file system), http, and https.n
2. Third-party Modules: Developers can install and use third-party modules (also known as npm packages) that offer additional functionality to help streamline development tasks.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the differences between synchronous and asynchronous methods of the fs module?
Explain npm in node.js?
What are the benefits of using node.js?
Where you can deploy node.js web application?
What Is Local Installation Of Dependencies?
Name some of the attributes of package.json?
How to create function in node js?
What are the security mechanisms available in Node.js?
What is the passport in Node.js?
Does node.js supports cryptography?
What is the use of Express Router Class?
Are promises better than callbacks?