Skip to content

WebMapper is a microservices-based application that crawls websites, extracts and maps data, and streams real-time information to power interactive visualizations of relational graphs.

Notifications You must be signed in to change notification settings

Silverback-Stack/WebMapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Add information here

PROJECT SETUP

  • Create directory file structure first, especially src folder

  • Create empty project in visual studio

  • Add the .gitignore to teh root folder to prevent GIT from versioning all sorts of crap Make sure this entry is added to .gitignore to prevent GIT versioning logs:

    Logs

    logs/ *.log

todo: add licence

Micro services architecture

[Crawler] → [Scraper] → [Parser] → [Normaliser] → [Graphing] → [Streaming] → [Browser Client] → Feeds crawl requests back to Crawler

  • The Graphing service stores node and edge data, possibly publishing domain events like NodeAdded, EdgeCreated.

  • The Streaming service subscribes to those events (via internal bus, pub/sub, or a lightweight queue like Redis Streams).

  • It pushes deltas to connected clients over SignalR, formatted for Sigma.js (JSON node/edge structure).

  • Clients can optionally request context snapshots or paginate historical data.

Streaming service: SignalR Core: Great choice. Native to ASP.NET Core, supports scale-out via Redis backplane or Azure SignalR Service.

Message Bus: Lightweight message forwarding:

  • In-memory

  • Redis Pub/Sub

  • Azure Service Bus / RabbitMQ for durability

  • Client Format: JSON Graph schema { nodes: [], edges: [] } tuned for Sigma.js or Cytoscape.

Graphing Visualisations: https://js.cytoscape.org/ https://www.sigmajs.org/

About

WebMapper is a microservices-based application that crawls websites, extracts and maps data, and streams real-time information to power interactive visualizations of relational graphs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages