🚀 Check out the project I built with Postman Student Programs! I made a full-stack AI text summarizer app using Replit, Node.js, Express, and the Hugging Face API. You can too: https://bit.ly/pbl-aits
This is a simple AI Text Summarizer application built with Node.js and Express. The application allows users to input text and receive a summarized version of the text using an AI model.
-
Clone the repository:
git clone https://github.com/onadan/AI-Text-Summarizer-App.git cd ai-text-summarizer-app -
Install the dependencies:
npm install
-
Start the server:
npm run start
- Open your browser and navigate to
http://localhost:3000. - Paste the text you want to summarize into the textarea provided.
- Click the "Summarize" button.
- The summarized text will appear in the output textarea.
index.js: The main server file that sets up the Express server and handles the endpoint.public/: Contains the static files for the frontend, including HTML, CSS, and JavaScript.summarize.js: Contains the logic for summarizing the text.package.json: Contains the project metadata and dependencies.