1.0.1 • Published 1 year ago
techflix-simple-add-package v1.0.1
Simple Add Function Example
This repository contains a basic Node.js npm module (add.js
) that provides a function to add two numbers.
Installation
To use this module in your Node.js project, you can install it via npm:
npm install --save techflix-simple-add-package
Usage
To use this package
// Import the add function from the module
const add = require('techflix-simple-add-package');
// Example usage:
const sum = add(5, 3);
console.log(`The sum of 5 and 3 is: ${sum}`);