Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 762 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 762 Bytes

chat-graphql-server

What is this about?

This is the simple graphql chat service that should help you in practicing you frontend skills.

If you are interested in some new frontend framework you could try to write an application that integrates with this server. This should help you to understand chosen technologies more and try it tools and features.

Server info

  • Stateless - There is no database so each time you restart the server it will be empty. (SQLLite could be integrated as a new feature)
  • NodeJS
  • Apollo Server
  • Typescript

How to start

  1. Clone the repo
  2. Install dependencies npm install
  3. The server is ready on port :4000

Article explains how I'm using it:

https://outofmemory.dev/building-chat-graphql/