New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

portal-linux

Package Overview
Dependencies
Maintainers
2
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

portal-linux

a high performance cache server

  • 1.11.42
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
2
Weekly downloads
 
Created
Source

Build

For linux x64

GOOS=linux GOARCH=amd64 go build

Protocol

Portal is a high performance frontend service. It depends on a backend to serve the files.

When an end user want to read a file from Portal, Portal will try to send a http request to FileService to get rawFile, then compute the rawFile and return the final file to end user.

             rawFile             file
FileService ----------> Portal --------> EndUser

Portal requests a file's uri to FileService. uri is the file location in the FileService.

curl -v http://127.0.0.1:7000/api/file?uri={uri}

The rawFile type can be binary or gisp.

When rawFile is binary

Portal returns the rawFile as file directly. The response format will be the same as normal static http server.

When rawFile is gisp

Portal will execute the script then return the result as file.

The response format will be like:

HTTP/1.1 200 OK
Portm-Type: Gisp

{gisp code}
HTTP/1.1 200 OK
Portm-Type: Binary

{bin}

Dev

noe -b go -w 'lib/**/*.go' -w '*.go' -- get

Changelog

v1.2

  • Remove query whitelist. All queries not begin with portal- will be ignored.

FAQs

Package last updated on 21 Jun 2018

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