# atma-libs

> Atma.js Library Package

Latest version **0.9.75** (published 2016-03-28) · 0 weekly downloads

## Install

```sh
npm install atma-libs
pnpm add atma-libs
yarn add atma-libs
bun add atma-libs
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.9.75 |
| Published | 2016-03-28 |
| First published | 2013-08-06 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >0.8.9 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Alex Kit |
| Maintainers | tenbits |

## Links

- npm: https://www.npmjs.com/package/atma-libs
- Repository: https://github.com/atmajs/Atma.Libs
- Homepage: http://atmajs.com/
- Issues: https://github.com/atmajs/Atma.Libs/issues
- npm.io page: https://npm.io/package/atma-libs

## Recent versions

- 0.9.75 (latest) — 2016-03-28
- 0.9.74 — 2015-07-05
- 0.9.73 — 2015-07-05
- 0.9.72 — 2015-06-06
- 0.9.71 — 2015-06-06
- 0.9.70 — 2015-06-06
- 0.9.69 — 2015-06-04
- 0.9.68 — 2015-05-13
- 0.9.67 — 2015-05-05
- 0.9.66 — 2015-03-20
- 0.9.64 — 2014-11-12
- 0.9.63 — 2014-09-29
- 0.9.62 — 2014-09-21
- 0.9.61 — 2014-08-15
- 0.9.60 — 2014-08-03
- … 113 more at https://npm.io/package/atma-libs/versions

## README

## Atma.js Libraries

Package contains different build-types for NodeJS and Browsers 

Included libraries:
- class
- include
- mask
- ruta
- arr
- utils

Included components:
- layout
- mask.animation


### NodeJS
For now all builds differs in the way they export the libraries - globals, namespace(atma), or CommonJS.


```javascript

	// Namespace
	require('atma-libs');

	atma.mask;
	atma.include;
	atma.Class;
	atma.ruta;

	// CommonJS
	var libs = require('atma-libs/exports');

	libs.mask;
	libs.include;
	libs.Class;
	libs.ruta;
	

	// Globals
	require('atma-libs/globals');

	mask;
	include;
	Class;
	ruta;
	
```

These are minified source. To load development versions use:

```javascript
'atma-libs/index-dev'
'atma-libs/exports-dev'
'atma-libs/globals-dev'
```

### Browser

Browser versions can be found in `browser/` directory.


###### Developers

> To make the custom build, this repository should be cloned into the same folder as all atma libraries:

```
- atma_folder/
  |
  |-- mask/
  |-- include/
  |-- class/
  |-- ruta/
  |-- ruqq/
  |-- compos/
  |-- atma.libs/
```
----
(c) 2014 MIT - Atma.js Project

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