Files

Open-source projects categorized as Files

Top 23 File Open-Source Projects

  • PDF.js

    PDF Reader in JavaScript

  • Project mention: DEMO - Voice to PDF - Complete PDF documents with voice commands using the Claude 3 Opus API | dev.to | 2024-04-27

    readPdf: used for reading the dropped file and displaying it on the screen, it uses PDF.js to load the file, get all fields and display it on the browser.

  • Files

    Building the best file manager for Windows

  • Project mention: Files | news.ycombinator.com | 2024-03-18
  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • jsPDF

    Client-side JavaScript PDF generation for everyone.

  • Project mention: Best HTML to PDF libraries for Node.js | dev.to | 2023-10-25

    jsPDF is a popular JavaScript PDF generator that allows users to generate PDF files in the web browser dynamically. The library is well-maintained, stable, easy to use, and has rich documentation.

  • Uppy

    The next open source file uploader for web browsers :dog:

  • Project mention: Uppy: Sleek, modular open source JavaScript file uploader | news.ycombinator.com | 2024-05-04
  • exa

    A modern replacement for ‘ls’.

  • Project mention: A ‘Software Developer’ Knows Enough to Deliver Working Software Alone and in Teams | /r/programming | 2023-12-06

    It depends on the scale of the project but man, if you can't build a simple CRUD app in your preferred stack and deploy it in some fashion (even if it's just a binary posted on some website, kinda like Exa) then that's just disappointing...

  • Flysystem

    Abstraction for local and remote filesystems

  • Project mention: Open Source Projects You Can Lay Your Hand On | /r/XBScompany | 2023-12-06

    Flysystem is a PHP project with open source code that revolutionizes work with the filesystem. It offers a unified and straightforward approach by abstracting the differences between various file system types, including local and cloud-based ones. You can utilize a consistent API to integrate it into your projects seamlessly. You can use it in any web application that works with data storage to make it more efficient and user-friendly.

  • Papa Parse

    Fast and powerful CSV (delimited text) parser that gracefully handles large files and malformed input

  • Project mention: Rendering a Million Rows in React by Drawing | dev.to | 2024-03-23

    At the click of a button, the data is downloaded and parsed into an array of objects with the help of papa-parse library.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • pdfmake

    Client/server side PDF printing in pure JavaScript

  • eza

    A modern, maintained replacement for ls

  • Project mention: Is Go Used in Production more than Rust ? | dev.to | 2024-04-26

    $ brew info eza ==> eza: stable 0.18.13 (bottled) Modern, maintained replacement for ls https://github.com/eza-community/eza Not installed From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/e/eza.rb License: MIT ==> Dependencies Build: pandoc ✘, pkg-config ✔, rust ✘ Required: libgit2 ✘ ==> Analytics install: 12,792 (30 days), 38,295 (90 days), 68,375 (365 days) install-on-request: 12,790 (30 days), 38,293 (90 days), 68,375 (365 days) build-error: 0 (30 days)

  • watchdog

    Python library and shell utilities to monitor filesystem events.

  • Project mention: Unexpected Expected Thriller: A Tale of Coding Curiosity | dev.to | 2023-09-10

    Today, I'm going to take you on a thrilling coding adventure inspired by a LinkedIn code snippet, where I tangled with FastAPI, River, Watchdog, and Tenacity. Ready? Buckle up!

  • ZipArchive

    ZipArchive is a simple utility class for zipping and unzipping files on iOS, macOS and tvOS.

  • Project mention: how can i read the content of a docx file? | /r/iOSProgramming | 2023-08-22

    you'll need to add https://github.com/ZipArchive/ZipArchive

  • script

    Making it easy to write shell-like scripts in Go

  • Project mention: GNU Parallel, where have you been all my life? | news.ycombinator.com | 2023-08-21

    I use Go. You can run scripts with go run directly, and this package makes shell tasks easy: https://github.com/bitfield/script

  • PHP FFmpeg

    An object oriented PHP driver for FFMpeg binary

  • xplorer

    Xplorer, a customizable, modern file manager

  • fselect

    Find files with SQL-like queries

  • statik

    Embed files into a Go executable

  • CSV

    CSV data manipulation made easy in PHP

  • lsix

    Like "ls", but for images. Shows thumbnails in terminal using sixel graphics.

  • Project mention: Are We Sixel Yet | news.ycombinator.com | 2023-05-14

    In XTerm, this (rightly) makes no difference. In Foot and Contour however, you still end up a line resp. a screen below where you started, if now with the correct horizontal position.

    So it seems to me like what you want should work by default, except it doesn’t.

    It should be possible to instead just treat the whole thing as a graphical overlay (by computing or directly asking for the character cell size, as Kirill Panov rightly admonishes me is possible with XTWINOPS) without touching the cursor; that’s what the “sixel scrolling” setting (DECSDM) is supposed to do. Then you can just manually move the cursor forward however many positions after you’re done drawing.

    Except apparently the DEC manual (the VT330/340 one above) and DEC hardware contradict each other as to which setting of DECSDM (set or reset) corresponds to which scrolling state (enabled or disabled), and XTerm has implemented it according to the manual not the VT3xx[1,2,3]—then most other emulators followed suit[4]—then XTerm switched to following the hardware[5,6] (unless you and that’s what I’m seeing on my machine right now. So now you need to check if you’re on XTerm ≥ 369 or not[7]. If I’m reading the Notcurses code right, other terminals have followed suit[8].

    Again, ouch.

    P.S. It seems DEC had an internal doc for how their terminals should operate (DEC STD 070) [9]. It does not document DECSDM at all.

    [1] https://github.com/wez/wezterm/issues/217#issuecomment-86449...

    [2] https://github.com/hackerb9/lsix/issues/41

    [3] https://github.com/dankamongmen/notcurses/issues/1782

    [4] https://github.com/arakiken/mlterm/pull/23

    [5] https://invisible-island.net/xterm/xterm.log.html#xterm_369

    [6] https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h3-T...

    [7] https://github.com/dankamongmen/notcurses/commit/0918fa251e2... (the correct version cutoff is 369 not 359, the patch contains a now-fixed bug)

    [8] https://github.com/dankamongmen/notcurses/blob/master/src/li... (look for mentions of invertsixel)

    [9] http://www.bitsavers.org/pdf/dec/standards/EL-SM070-00_DEC_S...

  • copy-webpack-plugin

    Copy files and directories with webpack

  • fuzz.txt

    Potentially dangerous files

  • diff2html

    Pretty diff to html javascript library (diff2html)

  • Project mention: Unified versus Split Diff | news.ycombinator.com | 2023-10-24
  • python-magic

    A python wrapper for libmagic

  • Files

    A nicer way to handle files & folders in Swift (by JohnSundell)

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Files related posts

  • DEMO - Voice to PDF - Complete PDF documents with voice commands using the Claude 3 Opus API

    4 projects | dev.to | 27 Apr 2024
  • Building W-9 Crafter

    4 projects | dev.to | 28 Mar 2024
  • Rendering a Million Rows in React by Drawing

    4 projects | dev.to | 23 Mar 2024
  • Files

    1 project | news.ycombinator.com | 18 Mar 2024
  • Parsing PDFs in Node.js

    5 projects | dev.to | 12 Mar 2024
  • Show HN: Musoq, SQL like language with LLM experimental integrations

    1 project | news.ycombinator.com | 12 Feb 2024
  • Show HN: Structuresmith – Generate Project Files and Templates for Consistency

    1 project | news.ycombinator.com | 10 Dec 2023
  • A note from our sponsor - SaaSHub
    www.saashub.com | 4 May 2024
    SaaSHub helps you find the best software and product alternatives Learn more →

Index

What are some of the best open-source File projects? This list will help you:

Project Stars
1 PDF.js 46,332
2 Files 32,008
3 jsPDF 28,389
4 Uppy 28,133
5 exa 23,290
6 Flysystem 13,202
7 Papa Parse 12,151
8 pdfmake 11,337
9 eza 7,435
10 watchdog 6,276
11 ZipArchive 5,371
12 script 5,084
13 PHP FFmpeg 4,735
14 xplorer 3,973
15 fselect 3,812
16 statik 3,721
17 CSV 3,280
18 lsix 3,082
19 copy-webpack-plugin 2,829
20 fuzz.txt 2,790
21 diff2html 2,707
22 python-magic 2,542
23 Files 2,501

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com