https://github.com/scriptnull/wordy
Text prediction engine on angular.js
https://github.com/scriptnull/wordy
Last synced: 10 months ago
JSON representation
Text prediction engine on angular.js
- Host: GitHub
- URL: https://github.com/scriptnull/wordy
- Owner: scriptnull
- Created: 2015-09-21T10:38:22.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-22T05:17:24.000Z (over 10 years ago)
- Last Synced: 2025-02-10T03:26:54.353Z (12 months ago)
- Language: JavaScript
- Size: 1.85 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wordy
Text prediction engine on angular.js
# Demos
### Client side predictions

### n - number of predictions

### Autocomplete in between words
Press a spacebar after a word to get autocompletions for it.

### Server side predictions

# Try it out
Clone the repo
```bash
git clone https://github.com/scriptnull/wordy.git
```
Install a web server. I am using [node.js](https://nodejs.org/en/) , you can use any.
```bash
npm install -g http-server
cd path\to\wordy
http-server
```
In order to use server side text prediction , you have to first download and run the [scriptnull/wordy-backend](https://github.com/scriptnull/wordy-backend) project. Please refer to instructions about it on the project page.