Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

edged

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

edged

Purge items at the edge of the network

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

edged - reverse proxy client

The edged Node.js package implements a tiny subset of the Fastly reverse proxy API. And even that’s bragging, what it does is purging single items at the edge of the network.

Types

class Edged

Edged is the main object in this package.

  • token: String

Your Edged API token.

  • auth: String

Optinally basic authentication credentials can be passed.

  • agent: http.Agent | https.Agent

You might want to configure the agent to use keep-alive connections.

  • log: { fatal, error, warn, info, debug, trace }

A conventional logging API is supported.

  • port: Number

The port to connect to. 443 is the default.

  • timeout: Number

Limits the time the socket is allowed to be idle, defaults to ten seconds.

Creating a client

const { Edged } = require('edged')

const client = new Edged(token)

By default, Edged doesn’t require an API token for purging.

Purging URLs

client.purgeByURL (uri, cb)

Purges a single URL.

client.softPurgeByURL (uri, cb)

Marks URL as outdated (stale) instead of permanently purging.

Streaming API

{ statusCode, uri, body }

Result objects form these streams.

Edged.createStream (client)

Write { action, uri } to this stream and read result objects.

Edged.createURLStream (client, action)

Pick the action at construction time and write URLs, String or URL types, to this stream.

Installing

With npm, do:

$ npm install edged

License

MIT License

Keywords

FAQs

Package last updated on 05 Mar 2019

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