You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

urlsafe-base64

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

urlsafe-base64

URL Safe Base64 encoding


Version published
Weekly downloads
247K
decreased by-6.85%
Maintainers
1
Install size
5.07 kB
Created
Weekly downloads
 

Package description

What is urlsafe-base64?

The urlsafe-base64 npm package provides utilities for encoding and decoding Base64 strings in a URL-safe manner. This means that the encoded strings are safe to use in URLs without needing additional encoding or escaping.

What are urlsafe-base64's main functionalities?

Encoding

This feature allows you to encode a Buffer into a URL-safe Base64 string. The encoded string can be safely used in URLs.

const urlsafeBase64 = require('urlsafe-base64');
const buffer = Buffer.from('Hello, World!');
const encoded = urlsafeBase64.encode(buffer);
console.log(encoded); // Outputs: 'SGVsbG8sIFdvcmxkIQ'

Decoding

This feature allows you to decode a URL-safe Base64 string back into a Buffer. The decoded Buffer can then be converted back to its original string form.

const urlsafeBase64 = require('urlsafe-base64');
const encoded = 'SGVsbG8sIFdvcmxkIQ';
const buffer = urlsafeBase64.decode(encoded);
console.log(buffer.toString()); // Outputs: 'Hello, World!'

Validation

This feature allows you to validate whether a given string is a valid URL-safe Base64 encoded string.

const urlsafeBase64 = require('urlsafe-base64');
const encoded = 'SGVsbG8sIFdvcmxkIQ';
const isValid = urlsafeBase64.validate(encoded);
console.log(isValid); // Outputs: true

Other packages similar to urlsafe-base64

Readme

Source

URL Safe Base64

URL Safe Base64 util module for Node.js applications

Build Status

Installation

With npm do:

npm install urlsafe-base64

Usage

Require it within your module:

  var URLSafeBase64 = require('urlsafe-base64');

.encode(buffer)

Encodes a buffer as a URL Safe Base64 string. This function encodes to the RFC 4648 Spec where '+' is encoded as '-' and '/' is encoded as '_'. The padding character '=' is removed.

  var randomURLSafeBase64;
  crypto.randomBytes(32, function(err, buf) {
    if (err) {
      throw err;
      return;
    };
    randomURLSafeBase64 = URLSafeBase64.encode(buf);
  });

.decode(string)

Decodes a URL Safe Base64 string as a buffer.

var someURLSafeBase64 = '';
URLSafeBase64.decode(someURLSafeBase64); // returns a buffer

.validate(string)

Validates a string if it is URL Safe Base64 encoded.

  var validURLSafeBase64 = '';
  URLSafeBase64.validate(validURLSafeBase64); // returns true

  var invalidURLSafeBase64 = '/+=='
  URLSafeBase64.validate(invalidURLSafeBase64); // returns false

License

(The MIT License)

Copyright (c) 2014 RGBboy <l-_-l@rgbboy.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Package last updated on 18 Dec 2014

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc