ElvinGarciaDev / node-palindrome-bootcamp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

↔️ Project: Server Side Palindrome Checker

Goal: Create a simple web application that uses the fs and http modules to validate if a string is a palindrome server side.

gif

How It's Made:

Tech used: HTML, CSS, JavaScript, Node.js

On the server side we're expecting a value to be passed to the query parameter. I created a isPalindrome() function that determines if the parameter passed is a palindrome. An object that holds the value or true or false is sent back.

Lessons Learned:

The querystring module provides utilities for parsing and formatting URL query strings

About