zlib

WebJar for zlib

Лицензия

Лицензия

BSD
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

zlib
Последняя версия

Последняя версия

1.0.5
Дата

Дата

Тип

Тип

jar
Описание

Описание

zlib
WebJar for zlib
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/kkaefer/DEPRECATED-node-zlib

Скачать zlib

Имя Файла Размер
zlib-1.0.5.pom
zlib-1.0.5.jar 11 KB
zlib-1.0.5-sources.jar 22 bytes
zlib-1.0.5-javadoc.jar 22 bytes
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/zlib/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>zlib</artifactId>
    <version>1.0.5</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/zlib/
implementation 'org.webjars.npm:zlib:1.0.5'
// https://jarcasting.com/artifacts/org.webjars.npm/zlib/
implementation ("org.webjars.npm:zlib:1.0.5")
'org.webjars.npm:zlib:jar:1.0.5'
<dependency org="org.webjars.npm" name="zlib" rev="1.0.5">
  <artifact name="zlib" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='zlib', version='1.0.5')
)
libraryDependencies += "org.webjars.npm" % "zlib" % "1.0.5"
[org.webjars.npm/zlib "1.0.5"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

DO NOT USE – DEPRECATED

This extension is deprecated since the functionality was folded into node.js core: https://nodejs.org/dist/latest/docs/api/zlib.html

NAME

node-zlib - Simple, synchronous deflate/inflate for node.js buffers.

USAGE

Install with npm install zlib.

var Buffer = require('buffer').Buffer;
var zlib = require('zlib');

var input = new Buffer('lorem ipsum dolor sit amet');
var compressed = zlib.deflate(input);
var output = zlib.inflate(compressed);

Note that node-zlib is only intended for small (< 128 KB) data that you already have buffered. It is not meant for input/output streams.

BUILDING

Make sure you have zlib installed. Mac OS X ships with it by default.

To obtain and build the bindings:

git clone git://github.com/kkaefer/node-zlib.git
cd node-zlib
./configure
make

You can also use npm to download and install them:

npm install zlib

TESTS

expresso is required to run unit tests.

npm install expresso
make test

CONTRIBUTORS

LICENSE

node-zlib is BSD licensed.

Версии библиотеки

Версия
1.0.5