https://github.com/braun-steven/hashtag-cloud
Article topic visualizer
https://github.com/braun-steven/hashtag-cloud
Last synced: 29 days ago
JSON representation
Article topic visualizer
- Host: GitHub
- URL: https://github.com/braun-steven/hashtag-cloud
- Owner: braun-steven
- Created: 2017-01-21T10:27:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-27T07:52:43.000Z (about 8 years ago)
- Last Synced: 2025-02-10T00:39:46.422Z (3 months ago)
- Language: JavaScript
- Size: 6.18 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Topic-Visualizer
This project is a Proof-Of-Concept for the usage of a neo4j database and can visualize document-topics (hashtags) with their most similar topics and their sentiments## Example
## Dependencies
- NodeJS >= 4.5.0
- Neo4j >= 3.0The neo4j needs a database with documents labeled as `Document` with properties `article_id` and `sentiment`. There needs to be a relationship to another entity called `Topic` with a property `name`.
```
(d:Document {article_id:"123", sentiment:"positive"})-[:HAS_TOPIC]->(t:Topic {name:"#prime"})
```
... would be a valid set.## BUILD-UP
```
npm install
```## How to execute
A running instance of a neo4j server is necessary (currently at `localhost:7474`)```
node app.js
```
Starts the testserver on `localhost:3000`
The testpage can be found at `localhost:3000/TestLinkurious.html`