A list of simple American-English words (revised Spache).
npm install @stdlib/datasets-spache-revisedWe believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js. The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases. When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there. To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
About stdlib...
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url]
> A [list][@klare:1974a] of simple American-English words (revised Spache).
``bash`
npm install @stdlib/datasets-spache-revised
`javascript`
var words = require( '@stdlib/datasets-spache-revised' );
#### words()
Returns a [list][@klare:1974a] of simple American-English words (revised Spache).
`javascript`
var data = words();
/* returns
[
'a',
'able',
'about',
'above',
...
]
*/
`javascript
var floor = require( '@stdlib/math-base-special-floor' );
var randu = require( '@stdlib/random-base-randu' );
var words = require( '@stdlib/datasets-spache-revised' );
var data = words();
var len = data.length;
var idx;
var i;
// Select random words from the list...
for ( i = 0; i < 100; i++ ) {
idx = floor( randu()*len );
console.log( data[ idx ] );
}
`
*
- Spache, George. 1953. "A New Readability Formula for Primary-Grade Reading Materials." _The Elementary School Journal_ 53 (7): 410–13. doi:[10.1086/458513][@spache:1953a].
- Klare, George R. 1974. "Assessing Readability." _Reading Research Quarterly_ 10 (1). Wiley, International Reading Association: 62–102.
- Stone, Clarence R. 1956. "Measuring Difficulty of Primary Reading Material: A Constructive Criticism of Spache's Measure." _The Elementary School Journal_ 57 (1). University of Chicago Press: 36–41.
- Perera, Katherine. 2012. "The assessment of linguistic difficulty in reading material." In _Linguistics and the Teacher_, edited by Ronald Carter, 101–13. Routledge Library Editions: Education. Taylor & Francis.
The data files (databases) are licensed under an [Open Data Commons Public Domain Dedication & License 1.0][pddl-1.0] and their contents are licensed under [Creative Commons Zero v1.0 Universal][cc0]. The software is licensed under [Apache License, Version 2.0][apache-license].
- [@stdlib/datasets-spache-revised-cli][@stdlib/datasets-spache-revised-cli]: CLI package for use as a command-line utility.
*
This package is part of [stdlib][stdlib], a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib].
#### Community
[![Chat][chat-image]][chat-url]
---
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
[@stdlib/datasets-spache-revised-cli]: https://www.npmjs.com/package/@stdlib/datasets-spache-revised-cli
[npm-image]: http://img.shields.io/npm/v/@stdlib/datasets-spache-revised.svg
[npm-url]: https://npmjs.org/package/@stdlib/datasets-spache-revised
[test-image]: https://github.com/stdlib-js/datasets-spache-revised/actions/workflows/test.yml/badge.svg?branch=v0.2.3
[test-url]: https://github.com/stdlib-js/datasets-spache-revised/actions/workflows/test.yml?query=branch:v0.2.3
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/datasets-spache-revised/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/datasets-spache-revised?branch=main
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
[chat-url]: https://stdlib.zulipchat.com
[stdlib]: https://github.com/stdlib-js/stdlib
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
[cli-section]: https://github.com/stdlib-js/datasets-spache-revised#cli
[cli-url]: https://github.com/stdlib-js/datasets-spache-revised/tree/cli
[@stdlib/datasets-spache-revised]: https://github.com/stdlib-js/datasets-spache-revised/tree/main
[umd]: https://github.com/umdjs/umd
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
[deno-url]: https://github.com/stdlib-js/datasets-spache-revised/tree/deno
[deno-readme]: https://github.com/stdlib-js/datasets-spache-revised/blob/deno/README.md
[umd-url]: https://github.com/stdlib-js/datasets-spache-revised/tree/umd
[umd-readme]: https://github.com/stdlib-js/datasets-spache-revised/blob/umd/README.md
[esm-url]: https://github.com/stdlib-js/datasets-spache-revised/tree/esm
[esm-readme]: https://github.com/stdlib-js/datasets-spache-revised/blob/esm/README.md
[branches-url]: https://github.com/stdlib-js/datasets-spache-revised/blob/main/branches.md
[pddl-1.0]: http://opendatacommons.org/licenses/pddl/1.0/
[cc0]: https://creativecommons.org/publicdomain/zero/1.0
[apache-license]: https://www.apache.org/licenses/LICENSE-2.0
[@spache:1953a]: https://doi.org/10.1086/458513
[@klare:1974a]: http://www.jstor.org/stable/747086