CodeReaderMe / awesome-code-reading

A curated list of high-quality codebases to read and study. Read more code!
377 stars 12 forks source link

Spectrum #16

Open kbariotis opened 5 years ago

kbariotis commented 5 years ago

Link to the codebase

https://github.com/withspectrum/spectrum

Which release/version did you read?

The latest

Why it is a good project to read?

It's a complete project with lots of contributors. I like it for various reasons:

francishero commented 5 years ago

Yes, agree

lucasleecr commented 5 years ago

@kbariotis thanks for the contribution. I will try to add a little more information since it looks like a fairly large project. Do you mind if I edit this issue?

lucasleecr commented 5 years ago

I looked into it a little bit more, and I have to agree that it's a good project to read. I like how the project is neatly structured. From the README:

spectrum/
├── api        # API server
├── athena     # Worker server (notifications and general processing)
├── chronos    # Worker server (cron jobs)
├── desktop    # desktop apps (build with electron)
├── docs
├── email-templates
├── hermes     # Worker server (email sending)
├── hyperion   # Server rendering server
├── mercury    # Worker server (reputation)
├── mobile     # Mobile apps
├── public     # Public files used on the frontend
├── shared     # Shared JavaScript code
├── src        # Frontend SPA
└── vulcan     # Worker server (search indexing; syncing with Algolia)

As said by @kbariotis, each sub-folder has its own concern and can be run separately.

I looked at a few files in the api server and they seems to be pretty clean and well-written. I think this will be a good project for someone who wants to learn how to implement chat.

I will read it a little more when I get a chance. There are a lot of interesting stuff in the repo. I can probably learn a ton from the mobile app and the Frontend SPA.

I am adding this to the list. Thanks again @kbariotis and @francishero for sharing it.