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

github.com/mwat56/jffs

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/mwat56/jffs

  • v0.1.4
  • Source
  • Go
  • Socket score

Version published
Created
Source

jffs – Just Files Filesystem

golang GoDoc Go Report Issues Size Tag License


Purpose

Often you don't want remote users to access your filesystem's static files outside the URLs you provide with your web-application. Especially if there are file(s) in your (sub-)directories which shouldn't be served to others. Therefore it's imperative to hamper the Go fileserver insofar as to not produce directory listings showing all available files. That's were this small package comes in.

Credits go to Brad Fitzpatrick and Alex Edwards.

Installation

You can use Go to install this package for you:

go get -u github.com/mwat56/jffs

Usage

This package exports a single function FileServer(). So, while you're used to call

myStaticDirectory :="/tmp"
myStaticHandler := http.FileServer(http.Dir(myStaticDirectory)))

to use this implementation you'd now just use:

myStaticHandler := jffs.FileServer(myStaticDirectory)

That's all.

Licence

Copyright © 2019, 2022 M.Watermann, 10247 Berlin, Germany
                All rights reserved
            EMail : <support@mwat.de>

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

You should have received a copy of the GNU General Public License along with this program. If not, see the GNU General Public License for details.


FAQs

Package last updated on 16 Mar 2022

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