An open API service indexing awesome lists of open source software.

https://github.com/oktopost/classy


https://github.com/oktopost/classy

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# Classy

Implements some basic OO principals into javascript.

[![NPM Version](https://img.shields.io/npm/v/oktopost-classy.svg)](https://www.npmjs.com/package/oktopost-classy)
[![Build Status](https://travis-ci.org/Oktopost/classy.svg?branch=master)](https://travis-ci.org/Oktopost/classy)
[![Coverage Status](https://coveralls.io/repos/github/Oktopost/classy/badge.svg?branch=master&2)](https://coveralls.io/github/Oktopost/classy?branch=master&2)

## Table Of Content

* [Installation](#installation)
* [Usage](#usage)

## Installation

* bower
```bash
bower install oktopost-classy
```
* npm
```bash
npm install oktopost-classy --save
```

## Usage

```js
// In browser
var Classy = window.Classy;

// In node
const Classy = require('oktopost-classy');
```