Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 1.02 KB

File metadata and controls

18 lines (14 loc) · 1.02 KB

Deno-Chat 🦕

This repo is an attempt to learn Deno by myself. deno-chat is a simple real-time chat application written in TypeScript utilizing Deno and Websockets

Installation

Before you start, you need to have Deno installed in order to run this application locally

  1. Clone this project to your desired location
  2. Open a terminal in the root directory of the project folder
  3. Run deno run --allow-net --allow-read server.ts in the terminal
  4. Open http://localhost:3000/ in your browser to use at the first client
  5. Open second instance of http://localhost:3000/ to see real-time chat between 2 users

Disclaimer

This entire project was created just for educational purposes and I've no intentions to further improving or maintaining it in the future

This project was created by following a tutorial blogpost on Dev.to by Aral Roca

Credit

Aral Roca