postman-url-encoder

WebJar for postman-url-encoder

Лицензия

Лицензия

MIT
Группа

Группа

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

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

postman-url-encoder
Последняя версия

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

1.0.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

postman-url-encoder
WebJar for postman-url-encoder
Ссылка на сайт

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

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

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

https://github.com/postmanlabs/postman-url-encoder

Скачать postman-url-encoder

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

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

Зависимости

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

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

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

Postman URL Encoder Build Status codecov

Postman URL Encoder is a NodeJS module that provides various URL encoding related APIs. This module is created to implement the WHATWG URL specification to remove dependency on Node's URL APIs across Postman systems. These APIs are useful to encode different parts (like hostname, path, query) of URL and convert PostmanUrl object into Node's Url like object.

Installing the Postman URL Encoder

Postman URL Encoder can be installed using NPM or directly from the git repository within your NodeJS projects. If installing from NPM, the following command installs the module and saves in your package.json

> npm install postman-url-encoder --save

Getting Started

Following example snippet shows how to convert PostmanUrl object into Node's Url like object.

var PostmanUrl = require('postman-collection').Url,
    pmEncoder = require('postman-url-encoder'),
    myUrl;

// Create PostmanUrl object
myUrl = new PostmanUrl('http://example.com/p/a/t/h?q1=v1');

// convert PostmanUrl object to Node's Url like object
myUrl = pmEncoder.toNodeUrl(myUrl));
// {
//   protocol: 'http:',
//   slashes: true,
//   auth: null,
//   host: 'example.com',
//   port: null,
//   hostname: 'example.com',
//   hash: null,
//   search: '?q1=v1',
//   query: 'q1=v1',
//   pathname: '/p/a/t/h',
//   path: '/p/a/t/h?q1=v1',
//   href: 'http://example.com/p/a/t/h?q1=v1'
// }

To know more about provided APIs, head over to Postman URL Encoder Docs.

org.webjars.npm

Postman Inc.

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

Версия
1.0.1