# sumsum

> sum up two numbers

Latest version **1.0.0** (published 2021-10-06) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2021-10-06 |
| First published | 2021-10-06 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | lichin-lin |
| Maintainers | lichin |

## Links

- npm: https://www.npmjs.com/package/sumsum
- Repository: https://github.com/lichin-lin/sumsum
- Homepage: https://github.com/lichin-lin/sumsum#readme
- Issues: https://github.com/lichin-lin/sumsum/issues
- npm.io page: https://npm.io/package/sumsum

## Recent versions

- 1.0.0 (latest) — 2021-10-06

## README

### Structure

 * src — this is where we’ll store our ES6 code files.
 * dist — this is where we’ll store the transpiled ES5 code.
 * We need to install babel dependencies to transpile the ES6 code to ES5.


### Test your node module before you publish

* `npm link` in node module project directory.
* `npm link @scope-name/my-new-npm-package` in other developing project
* `npm unlink --no-save @scope-name/my-new-npm-package` to unlink
* `npm pack` If you want to double check that your package will include only the files you intend it to when published.

* `yarn run build && npm link` would be helpful.

### publish to github packages

* go to [https://github.com/settings/tokens](https://github.com/settings/tokens)
* add a new token with `write:packages`
* create `.npmrc`
* update fields in `package.json` (name & repository field)
* run `npm login --scope=@YOUR_GITHUB_USERNAME --registry=https://npm.pkg.github.com`
* your password is your token.

### Ref

* https://levelup.gitconnected.com/private-npm-packages-in-github-package-registry-fbfda43acab3

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