{"id":18555612,"url":"https://github.com/n2ref/fileup","last_synced_at":"2025-10-28T20:16:28.267Z","repository":{"id":20938680,"uuid":"44044716","full_name":"n2ref/fileup","owner":"n2ref","description":"FileUp - JQuery File Upload","archived":false,"fork":false,"pushed_at":"2024-05-16T20:11:24.000Z","size":2559,"stargazers_count":19,"open_issues_count":0,"forks_count":7,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-08-25T01:38:35.089Z","etag":null,"topics":["file","file-upload","javascript","jquery","js","library","upload"],"latest_commit_sha":null,"homepage":"https://n2ref.github.io/fileup/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/n2ref.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-10-11T08:31:13.000Z","updated_at":"2024-08-26T09:04:06.000Z","dependencies_parsed_at":"2024-05-13T16:16:42.682Z","dependency_job_id":"a703a4cd-2300-44ff-b723-955115d52c28","html_url":"https://github.com/n2ref/fileup","commit_stats":null,"previous_names":["n2ref/fileup","shabuninil/fileup"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/n2ref/fileup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n2ref%2Ffileup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n2ref%2Ffileup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n2ref%2Ffileup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n2ref%2Ffileup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/n2ref","download_url":"https://codeload.github.com/n2ref/fileup/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n2ref%2Ffileup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281505202,"owners_count":26513064,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-28T02:00:06.022Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["file","file-upload","javascript","jquery","js","library","upload"],"created_at":"2024-11-06T21:27:19.194Z","updated_at":"2025-10-28T20:16:28.231Z","avatar_url":"https://github.com/n2ref.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FileUp \nБиблиотека для загрузки файлов на сервер.\nПоддерживает выбор нескольких файлов, перетаскивание и индикатор выполнения.\n\n[[DEMO]](https://n2ref.github.io/fileup/)\n\n![Interface](https://raw.githubusercontent.com/n2ref/fileup/gh-pages/src/img/preview.png)\n\n## Documentation\n\n### Install with npm\n```shell\n$ npm install fileup-js\n```\n\n### 1. Events\n\n- onSelect (file)\n- onRemove (file)\n- onBeforeStart (file, xhr)\n- onStart (file)\n- onProgress (file, ProgressEvent)\n- onSuccess (file, response)\n- onError (errorType, options)\n- onAbort (file)\n- onFinish (file)\n- onDragEnter (event)\n- onDragOver (event)\n- onDragLeave (event)\n- onDragEnd (event)\n\n### 2. Options\n\n- id: '',\n- url: '',\n- input: '',\n- queue: '',\n- dropzone: '',\n- files: [],\n- fieldName: 'file',\n- extraFields: {},\n- lang: 'en',\n- sizeLimit: 0,\n- filesLimit: 0,\n- httpMethod: 'post',\n- timeout: null,\n- autostart: false,\n- templateFile:\n \n```html\n\u003cdiv class=\"fileup-file [TYPE] mb-2 p-1 d-flex flex-nowrap gap-2 bg-light border border-secondary-subtle rounded rounded-1\"\u003e\n    \u003cdiv class=\"fileup-preview\"\u003e\n        \u003cimg src=\"[PREVIEW_SRC]\" alt=\"[NAME]\" class=\"border rounded\"/\u003e\n        \u003ci class=\"fileup-icon fs-4 text-secondary\"\u003e\u003c/i\u003e\n    \u003c/div\u003e\n    \u003cdiv class=\"flex-fill\"\u003e\n        \u003cdiv class=\"fileup-description\"\u003e\n            \u003cspan class=\"fileup-name\"\u003e[NAME]\u003c/span\u003e\n            \u003csmall class=\"fileup-size text-nowrap text-secondary\"\u003e([SIZE])\u003c/small\u003e\n        \u003c/div\u003e\n\n        \u003cdiv class=\"fileup-controls mt-1 d-flex gap-2\"\u003e\n            \u003cspan class=\"fileup-remove\" title=\"[REMOVE]\"\u003e✕\u003c/span\u003e\n            \u003cspan class=\"fileup-upload link-primary\"\u003e[UPLOAD]\u003c/span\u003e\n            \u003cspan class=\"fileup-abort link-primary\" style=\"display:none\"\u003e[ABORT]\u003c/span\u003e\n        \u003c/div\u003e\n\n        \u003cdiv class=\"fileup-result\"\u003e\u003c/div\u003e\n\n        \u003cdiv class=\"fileup-progress progress mt-2 mb-1\"\u003e\n            \u003cdiv class=\"fileup-progress-bar progress-bar\"\u003e\u003c/div\u003e\n        \u003c/div\u003e\n    \u003c/div\u003e\n\u003c/div\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn2ref%2Ffileup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fn2ref%2Ffileup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn2ref%2Ffileup/lists"}