Generate dynamic, composable suggestions for text completion.
- suggest words/phrases by scope.
- define phrase-based suggestions.
- define lookup-based suggestions (recursive).
- dynamically add/remove suggestion patterns.
autosuggestion
can be used in Node.js and browsers.
npm install autosuggestion
// ES Module (ESM)
import { Dictionary } from 'autosuggestion'
// CommonJS (CJS)
const autosuggestion = require('autosuggestion')
<!-- HTML Script Tag -->
<script type='text/javascript' src='https://unpkg.com/autosuggestion'></script>
For more details, see documentation.
const dictionary = new Dictionary()
list of live example pages brief section descriptions of each feature
- run
npm version major|minor|patch
- create release on github manually (triggers a github workflow to publish tp npm)
eventually, consider using semantic-release
- automate test coverage reporting
- get 100% test coverage
- clean up and restructure code
- setup ci for coverage report + doc generation + npm publishing (look into tags as a mechanism for publishing)
- generate badges with shields.io
- include doc comments for typedoc
- fill out readme
- update package.json
- update github
- update package (use latest package from unpkg.org in browser examples)
- host documentation
- Dictionary
- Scope
- Suggestion
- Node
- types
- make Dictionary API handle multiple input data shapes
- suggestion token annotations (context, etc.)
- configuration (lookup brackets, etc.)
- examples landing page (browser) (or link in docs)
- simple, dynamic dictionary (browser)
- complex, dynamic CFG (browser)
- lookahead configuration (browser)
- large dictionary (browser)
- basic (nodejs)