Socket
Book a DemoInstallSign in
Socket

obvious-closure-library

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

obvious-closure-library

Fork of closure-library that allows installation via NPM.

latest
Source
npmnpm
Version
20161024.1.0
Version published
Maintainers
1
Created
Source

Closure Library Build Status

This is Medium's fork of the Google Closure Library.

We try to keep it reasonably up to date, but only after testing that it is compatible with our products. There may occasionally be changes introduced to work around temporary issues or to try out fixes in preparation of upstream patches.

The package number reflects the date that we last merged the fork. We rebase our changes on top of origin/master, so that our modifications are always on top of the closure-library master changes.

Using

require('obvious-closure-library').bootstrap()
goog.require('goog.string.linkify')
goog.string.linkify.linkifyPlainText('Hello www.world.com')

NPM Info

The repository contains a lot of test files and demos, as such we include a postinstall script that removes these files from the node_modules directory when installed via NPM.

Contributing

This project isn't intended for external contribution, we suggest instead you send patches directly.

Original Readme

Closure Library is a powerful, low-level JavaScript library designed for building complex and scalable web applications. It is used by many Google web applications, such as Google Search, Gmail, Google Docs, Google+, Google Maps, and others.

For more information, visit the Google Developers or GitHub sites.

Download the latest stable version on our releases page.

Developers, please see the Generated API Documentation.

See also the goog.ui Demos

Using with Node.js

Install the official package from npm.

npm install google-closure-library

Require the package and use goog.require normally.

require("google-closure-library");

goog.require("goog.crypt.Sha1");

var sha1 = new goog.crypt.Sha1();
sha1.update("foobar");
var hash = sha1.digest();

Keywords

javascript

FAQs

Package last updated on 19 Oct 2018

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