oyindamola_palindromes_checks_sqi
v1.1.2
Published
`oyindamola_palindromes_checks_sqi` is a lightweight Node.js package designed to check if a given string is a palindrome. It also includes a simple Express server setup for demonstration purposes.
Downloads
7
Maintainers
Readme
Oyindamola Palindromes Checks (SQI)
oyindamola_palindromes_checks_sqi is a lightweight Node.js package designed to check if a given string is a palindrome. It also includes a simple Express server setup for demonstration purposes.
Features
- Palindrome Checker: Easily determine if a string is a palindrome.
- Express Server: A basic server setup to demonstrate the functionality.
- Lightweight: Minimal dependencies for quick and easy usage.
Installation
Install the package using npm:
npm install oyindamola_palindromes_checks_sqi
const pali = require('oyindamola_palindromes_checks_sqi');
// Example usage
let result = pali('Hannah');
console.log(result); // Output: "Hannah is a palindrome"
result = pali('Hello');
console.log(result); // Output: "Hello is not a palindrome"
create an index.js file as the entry file
index.js: Contains the main logic for the palindrome checker and the Express server setup.
package.json: Defines the project metadata and dependencies.
Keywords
This package is tagged with the following keywords for easy discovery:
Palindrome
JavaScript
Oyindamola
SQI
This project relies on the following dependency:
Express ^5.1.0
Author:'Owolabi Oyindamola'
This package was created by Oyindamola. 