https://github.com/healeycodes/dev-article-analysis
📊 A website that graphs textual statistics from a DEV user's articles
https://github.com/healeycodes/dev-article-analysis
devto express express-ws textual-analysis thepracticaldev websockets
Last synced: 8 months ago
JSON representation
📊 A website that graphs textual statistics from a DEV user's articles
- Host: GitHub
- URL: https://github.com/healeycodes/dev-article-analysis
- Owner: healeycodes
- License: mit
- Created: 2020-01-15T19:32:21.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-20T19:35:36.000Z (almost 6 years ago)
- Last Synced: 2025-03-31T11:21:10.641Z (9 months ago)
- Topics: devto, express, express-ws, textual-analysis, thepracticaldev, websockets
- Language: JavaScript
- Homepage: https://dev-article-analysis.glitch.me/
- Size: 528 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
DEV Article Analysis
=================
> My blog post: [DEV Article Analysis](https://healeycodes.com/dev-article-analysis/)
A website that graphs textual statistics from a [DEV](https://dev.to) user's articles (readability, complexity, grade level, semantic analysis) over time. The data is displayed in interactive charts.
- Flesch–Kincaid grade level
- Flesch reading ease
- Sentiment analysis

### Install
`npm i`
### Setup
Setup the application port, and DEV API key ([https://dev.to/settings/account](https://dev.to/settings/account))
**Linux/macOS**
```
export PORT=3000
export DEV_KEY=abc123
```
**Command Prompt**
```
set PORT=3000
set DEV_KEY=abc123
```
**PowerShell**
```
$env:PORT = "3000"
$env:DEV_KEY = "abc123"
```
### Run
`npm run start`
### Contributing
Any fixes or improvements are welcome. Happy to help and provide advice via Issues/PRs.
### License
MIT.