# howsweather

> A simple CLI to visualize weather.

Latest version **0.1.4** (published 2017-01-23) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install howsweather
pnpm add howsweather
yarn add howsweather
bun add howsweather
```

Provides the command `howsweather`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.4 |
| Published | 2017-01-23 |
| First published | 2017-01-10 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 6.3.1 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Dom Corvasce |
| Maintainers | domcorvasce, mariolamacchia |
| Keywords | console, cli, weather, weather, cli |

## Links

- npm: https://www.npmjs.com/package/howsweather
- Repository: https://github.com/PugliaSOS/howsweather
- Homepage: https://github.com/PugliaSOS/howsweather#readme
- Issues: https://github.com/PugliaSOS/howsweather/issues
- npm.io page: https://npm.io/package/howsweather

## Alternatives

- [@salesforce/cli](https://npm.io/package/@salesforce/cli.md) — 389.7K weekly downloads
- [@mintlify/cli](https://npm.io/package/@mintlify/cli.md) — 208.9K weekly downloads
- [@grafana/e2e-selectors](https://npm.io/package/@grafana/e2e-selectors.md) — 128.7K weekly downloads
- [mintlify](https://npm.io/package/mintlify.md) — 112.0K weekly downloads
- [@intlayer/cli](https://npm.io/package/@intlayer/cli.md) — 22.8K weekly downloads

## Recent versions

- 0.1.4 (latest) — 2017-01-23
- 0.1.3 — 2017-01-16
- 0.1.2 — 2017-01-13
- 0.1.1 — 2017-01-10
- 0.1.0 — 2017-01-10

## README

# howsweather
[![Build Status](https://travis-ci.org/PugliaSOS/howsweather.svg?branch=master)](https://travis-ci.org/PugliaSOS/howsweather)
[![codecov](https://codecov.io/gh/PugliaSOS/howsweather/branch/master/graph/badge.svg)](https://codecov.io/gh/PugliaSOS/howsweather)

A simple Node.js script that displays weather on terminal.

## Installation

Make sure you've Node.js `>= 6.3.1` and `npm` installed on your system.

Then type:

```shell
npm install howsweather -g
```

Here you are! You're ready to use **howsweather**.

## Getting Started
![Screenshot](http://i.imgur.com/UG40JgX.png "Screenshot")

### Configure the necessary

In order to work, **howsweather** reads configuration options from a 
JSON file `.howsweather` in your `$HOME` directory.

So open your favourite text editor and type:
```json
{
  "city": "YOURCITY",
  "api_key": "YOURAPIKEY"
}
```

If you don't specify a city, it'll find your location automatically.

You can get an API key at [OpenWeatherMap](https://openweathermap.org/api).

#### Scales

_howsweather_ allows you to show temperatures in the three main scales.
By default, it uses your position in order to understand what scale use.

You can change this behavior specifying a `scale` option in your 
configuration file, there are three possible values:

- `C` for Celsius scale
- `F` for Fahrenheit scale
- `K` for Kelvin scale

### See weather stats

If you want to see weather for a specific city:
```shell
howsweather "New York"
```

Or for the default one:
```shell
howsweather
```

## License

howsweather is released under terms of [GNU/GPL 3.0 license](LICENSE).

---
_Source: https://npm.io/package/howsweather · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
