Socket
Socket
Sign inDemoInstall

skedify-uri-encoding

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

skedify-uri-encoding

Encoding of JSON object


Version published
Maintainers
1
Created
Source

Skedify URI-Encoding

Release: GitHub license npm Build Status

Development: Build Status GitHub issues Commitizen friendly

Installation

npm install skedify-uri-encoding

Usage

With ES Modules:

import { encodeURIParameters, decodeURIParameters } from 'skedify-uri-encoding';

const encoded = encodeURIParameters({ attribute: 'value' });
console.log({ encoded });
const decoded = decodeURIParameters(encoded);
console.log({ decoded });

With CommonJS:

const { encodeURIParameters, decodeURIParameters } = require('skedify-uri-encoding');

const encoded = encodeURIParameters({ attribute: 'value' });
console.log({ encoded });
const decoded = decodeURIParameters(encoded);
console.log({ decoded });

Stack

This repostiory uses TSDX for development.

Contributing

Use npm run commit when you want to commit a change.

Releases

This project uses GitHub actions and semantic-release for creating releases.

Release Candidates

To make a (temporary) release candidate, you can use the following commands:

# Create a new rc from the latest/remote develop
npm run release-candidate

or

# Create a new rc from a specific branch
npm run release-candidate -- feature/SKED-XXXX

That command will make a new rc branch (locally and remotely) on which semantic-release is configured to create a new release candidate (see .releaserc).

Final Releases

Since semantic-release is currently configured to run on any push'es to master, creating and merging a GitHub Pull Request into master will trigger a new release automatically.

Typically we do this via a temporary release/next or release/SKED-XXXX branch and creating a PR via GitHub UI.

Keywords

FAQs

Package last updated on 10 Jan 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc