Latest Threat Research:Malicious dYdX Packages Published to npm and PyPI After Maintainer Compromise.Details
Socket
Book a DemoInstallSign in
Socket

atma-libs

Package Overview
Dependencies
Maintainers
1
Versions
128
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

atma-libs

Atma.js Library Package

latest
Source
npmnpm
Version
0.9.75
Version published
Weekly downloads
6
-70%
Maintainers
1
Weekly downloads
 
Created
Source

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.


	// 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:

'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

FAQs

Package last updated on 28 Mar 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts