# apeman-service-base

> Abstract service

Latest version **2.0.1** (published 2017-02-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install apeman-service-base
pnpm add apeman-service-base
yarn add apeman-service-base
bun add apeman-service-base
```

## 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 | 2.0.1 |
| Published | 2017-02-12 |
| First published | 2016-10-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=6 |
| Dependencies | 6 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Taka Okunishi |
| Maintainers | okunishinishi |
| Keywords | apeman, service |

## Links

- npm: https://www.npmjs.com/package/apeman-service-base
- Repository: https://github.com/apeman-service-labo/apeman-service-base
- Homepage: https://github.com/apeman-service-labo/apeman-service-base#readme
- Issues: https://github.com/apeman-service-labo/apeman-service-base/issues
- npm.io page: https://npm.io/package/apeman-service-base

## Dependencies (6)

- [co](https://npm.io/package/co.md) ^4.6.0
- [abind](https://npm.io/package/abind.md) ^1.0.1
- [debug](https://npm.io/package/debug.md) ^2.2.0
- [bredux](https://npm.io/package/bredux.md) ^1.6.3
- [bwindow](https://npm.io/package/bwindow.md) ^1.0.7
- [bredux-operate](https://npm.io/package/bredux-operate.md) ^1.1.2

## Recent versions

- 2.0.1 (latest) — 2017-02-12
- 2.0.0 — 2017-02-12
- 1.2.1 — 2017-01-20
- 1.2.0 — 2017-01-19
- 1.1.9 — 2016-10-14
- 1.1.8 — 2016-10-12
- 1.1.7 — 2016-10-12
- 1.1.6 — 2016-10-12
- 1.1.5 — 2016-10-12
- 1.1.4 — 2016-10-12
- 1.1.3 — 2016-10-12
- 1.1.2 — 2016-10-12
- 1.1.1 — 2016-10-11
- 1.1.0 — 2016-10-11
- 1.0.7 — 2016-10-11
- … 7 more at https://npm.io/package/apeman-service-base/versions

## README

apeman-service-base
==========

<!---
This file is generated by ape-tmpl. Do not update manually.
--->

<!-- Badge Start -->
<a name="badges"></a>

[![Build Status][bd_travis_shield_url]][bd_travis_url]
[![npm Version][bd_npm_shield_url]][bd_npm_url]
[![JS Standard][bd_standard_shield_url]][bd_standard_url]

[bd_repo_url]: https://github.com/apeman-service-labo/apeman-service-base
[bd_travis_url]: http://travis-ci.org/apeman-service-labo/apeman-service-base
[bd_travis_shield_url]: http://img.shields.io/travis/apeman-service-labo/apeman-service-base.svg?style=flat
[bd_travis_com_url]: http://travis-ci.com/apeman-service-labo/apeman-service-base
[bd_travis_com_shield_url]: https://api.travis-ci.com/apeman-service-labo/apeman-service-base.svg?token=
[bd_license_url]: https://github.com/apeman-service-labo/apeman-service-base/blob/master/LICENSE
[bd_codeclimate_url]: http://codeclimate.com/github/apeman-service-labo/apeman-service-base
[bd_codeclimate_shield_url]: http://img.shields.io/codeclimate/github/apeman-service-labo/apeman-service-base.svg?style=flat
[bd_codeclimate_coverage_shield_url]: http://img.shields.io/codeclimate/coverage/github/apeman-service-labo/apeman-service-base.svg?style=flat
[bd_gemnasium_url]: https://gemnasium.com/apeman-service-labo/apeman-service-base
[bd_gemnasium_shield_url]: https://gemnasium.com/apeman-service-labo/apeman-service-base.svg
[bd_npm_url]: http://www.npmjs.org/package/apeman-service-base
[bd_npm_shield_url]: http://img.shields.io/npm/v/apeman-service-base.svg?style=flat
[bd_standard_url]: http://standardjs.com/
[bd_standard_shield_url]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg

<!-- Badge End -->


<!-- Description Start -->
<a name="description"></a>

Abstract service

<!-- Description End -->


<!-- Overview Start -->
<a name="overview"></a>



<!-- Overview End -->


<!-- Sections Start -->
<a name="sections"></a>

<!-- Section from "doc/guides/01.Installation.md.hbs" Start -->

<a name="section-doc-guides-01-installation-md"></a>

Installation
-----

```bash
$ npm install apeman-service-base --save
```


<!-- Section from "doc/guides/01.Installation.md.hbs" End -->

<!-- Section from "doc/guides/02.Usage.md.hbs" Start -->

<a name="section-doc-guides-02-usage-md"></a>

Usage
---------

```javascript
#!/usr/bin/env node

'use strict'

const apemanstore = require('apemanstore')
const { ApService } = require('apeman-service-base')

{
  let store = apemanstore()
  let service = new ApService(store)

  service.set('foo', 'bar')
  console.log(service.get('foo'))
}

```


<!-- Section from "doc/guides/02.Usage.md.hbs" End -->

<!-- Section from "doc/guides/03.API.md.hbs" Start -->

<a name="section-doc-guides-03-a-p-i-md"></a>

API
---------

# apeman-service-base@2.0.0

Abstract service

+ Functions
  + [create(args)](#apeman-service-base-function-create)
+ [ApService](apeman-service-base-classes) Class
  + [new ApService()](#apeman-service-base-classes-ap-service-constructor)

## Functions

<a class='md-heading-link' name="apeman-service-base-function-create" ></a>

### create(args) -> `ApService`

Create the service instance

| Param | Type | Description |
| ----- | --- | -------- |
| args | * |  |



<a class='md-heading-link' name="apeman-service-base-classes"></a>

## ApService Class

Abstract service


<a class='md-heading-link' name="apeman-service-base-classes-ap-service-constructor" ></a>

### new ApService()

Constructor of ApService class








<!-- Section from "doc/guides/03.API.md.hbs" End -->


<!-- Sections Start -->


<!-- LICENSE Start -->
<a name="license"></a>

License
-------
This software is released under the [MIT License](https://github.com/apeman-service-labo/apeman-service-base/blob/master/LICENSE).

<!-- LICENSE End -->


<!-- Links Start -->
<a name="links"></a>

Links
------

+ [apeman][apeman_url]

[apeman_url]: https://github.com/apeman-labo/apeman

<!-- Links End -->

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