https://github.com/oktopost/classy
https://github.com/oktopost/classy
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/oktopost/classy
- Owner: Oktopost
- Created: 2017-03-30T15:49:12.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-14T12:45:12.000Z (over 8 years ago)
- Last Synced: 2025-07-11T22:41:34.847Z (12 months ago)
- Language: JavaScript
- Size: 17.6 KB
- Stars: 0
- Watchers: 13
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Classy
Implements some basic OO principals into javascript.
[](https://www.npmjs.com/package/oktopost-classy)
[](https://travis-ci.org/Oktopost/classy)
[](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');
```