Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/filiph/english_words
Utilities for working with English words
https://github.com/filiph/english_words
Last synced: 2 days ago
JSON representation
Utilities for working with English words
- Host: GitHub
- URL: https://github.com/filiph/english_words
- Owner: filiph
- License: mit
- Created: 2017-03-07T01:19:51.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-07-22T12:39:14.000Z (over 1 year ago)
- Last Synced: 2024-12-28T16:15:11.687Z (9 days ago)
- Language: Dart
- Homepage: https://pub.dartlang.org/packages/english_words
- Size: 145 KB
- Stars: 207
- Watchers: 8
- Forks: 66
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# english_words
[![Build status](https://travis-ci.org/filiph/english_words.svg)](https://travis-ci.org/filiph/english_words)
A package containing the most ~5000 used English words and some utility
functions.## Usage
Printing the top 50 most used nouns in the English language:
import 'package:english_words/english_words.dart';
main() {
nouns.take(50).forEach(print);
}Computing number of syllables in a word:
syllables('beautiful'); // 3
syllables('abatement'); // 3
syllables('zoology'); // 4Generating 5 interesting 2-syllable word combinations:
generateWordPairs().take(5).forEach(print);
## Features and bugs
Please file feature requests and bugs at the [issue tracker][tracker].
[tracker]: https://github.com/filiph/english_words/issues