# one-thing
**Repository Path**: mirrors_sindresorhus/one-thing
## Basic Information
- **Project Name**: one-thing
- **Description**: Set the text for the One Thing app
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2022-01-17
- **Last Updated**: 2026-04-04
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# one-thing
> Set the text for the [One Thing](https://sindresorhus.com/one-thing) app
**Requires [Node.js 12](https://nodejs.org) and the [One Thing](https://sindresorhus.com/one-thing) app to be installed.**
## CLI
```sh
npm install --global one-thing
```
```
$ one-thing --help
Usage
$ one-thing
$ one-thing --get
Example
$ one-thing 'Prepare for important meeting'
```
## API
```sh
npm install one-thing
```
```js
import oneThing, {getOneThing} from 'one-thing';
await oneThing('Prepare for important meeting');
console.log(await getOneThing());
//=> 'Prepare for important meeting'
```