[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-3229":3},{"id":4,"name":5,"fullName":6,"owner":5,"repo":5,"description":7,"homepage":8,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":15,"stars7d":15,"stars30d":16,"stars90d":15,"forks30d":15,"starsTrendScore":15,"compositeScore":17,"rankGlobal":9,"rankLanguage":9,"license":18,"archived":19,"fork":19,"defaultBranch":20,"hasWiki":21,"hasPages":19,"topics":22,"createdAt":9,"pushedAt":9,"updatedAt":27,"readmeContent":28,"aiSummary":29,"trendingCount":15,"starSnapshotCount":15,"syncStatus":30,"lastSyncTime":31,"discoverSource":32},3229,"dropzone","dropzone\u002Fdropzone","Dropzone is an easy to use drag'n'drop library. It supports image previews and shows nice progress bars.","http:\u002F\u002Fwww.dropzone.dev\u002Fjs",null,"JavaScript",18377,3249,375,128,0,6,45,"Other",false,"main",true,[23,5,24,25,26],"drag-and-drop","file-upload","javascript","javascript-library","2026-06-12 02:00:47","\u003Cimg alt=\"Dropzone.js\" src=\"https:\u002F\u002Fraw.githubusercontent.com\u002Fdropzone\u002Fdropzone\u002Fassets\u002Fgithub-logo.svg\" \u002F>\n\n[![Test and Release](https:\u002F\u002Fgithub.com\u002Fdropzone\u002Fdropzone\u002Factions\u002Fworkflows\u002Ftest-and-release.yml\u002Fbadge.svg)](https:\u002F\u002Fgithub.com\u002Fdropzone\u002Fdropzone\u002Factions\u002Fworkflows\u002Ftest-and-release.yml)\n\nDropzone is a JavaScript library that turns any HTML element into a dropzone.\nThis means that a user can drag and drop a file onto it, and Dropzone will\ndisplay file previews and upload progress, and handle the upload for you via\nXHR.\n\nIt's fully configurable, can be styled according to your needs and is trusted by\nthousands.\n\n\u003Cdiv align=\"center\">\n  \u003Cimg width=\"674\" alt=\"Dropzone Screenshot\" src=\"https:\u002F\u002Fuser-images.githubusercontent.com\u002F133277\u002F138495095-b026cc5c-9458-4e0b-8066-d8a9d0f7e72a.png\">\n\u003C\u002Fdiv>\n\n## Quickstart\n\nInstall:\n\n```bash\n$ npm install --save dropzone\n# or with yarn:\n$ yarn add dropzone\n```\n\nUse as **ES6 module** (recommended):\n\n```js\nimport { Dropzone } from \"dropzone\";\nconst dropzone = new Dropzone(\"div#myId\", { url: \"\u002Ffile\u002Fpost\" });\n```\n\nor use as **CommonJS module**:\n\n```js\nconst { Dropzone } = require(\"dropzone\");\nconst dropzone = new Dropzone(\"div#myId\", { url: \"\u002Ffile\u002Fpost\" });\n```\n\n[👉 Checkout our example implementations for different\nbundlers](https:\u002F\u002Fgithub.com\u002Fdropzone\u002Fdropzone-examples)\n\n## Not using a package manager or bundler?\n\nUse the standalone files like this:\n\n```html\n\u003Cscript src=\"https:\u002F\u002Funpkg.com\u002Fdropzone@5\u002Fdist\u002Fmin\u002Fdropzone.min.js\">\u003C\u002Fscript>\n\u003Clink\n  rel=\"stylesheet\"\n  href=\"https:\u002F\u002Funpkg.com\u002Fdropzone@5\u002Fdist\u002Fmin\u002Fdropzone.min.css\"\n  type=\"text\u002Fcss\"\n\u002F>\n\n\u003Cdiv class=\"my-dropzone\">\u003C\u002Fdiv>\n\n\u003Cscript>\n  \u002F\u002F Dropzone has been added as a global variable.\n  const dropzone = new Dropzone(\"div.my-dropzone\", { url: \"\u002Ffile\u002Fpost\" });\n\u003C\u002Fscript>\n```\n\n---\n\n- [📚 Full documentation](https:\u002F\u002Fdocs.dropzone.dev)\n- [⚙️ `src\u002Foptions.js`](https:\u002F\u002Fgithub.com\u002Fdropzone\u002Fdropzone\u002Fblob\u002Fmain\u002Fsrc\u002Foptions.js)\n  for all available options\n\n---\n\n> ⚠️ **NOTE**: We are currently moving away from IE support to make the library\n> more lightweight. If you don't care about IE but about size, you can already\n> opt into `6.0.0-beta.1`. Please make sure to pin the specific version since\n> parts of the API might change slightly. You can always read about the changes\n> in the [`CHANGELOG`](.\u002FCHANGELOG.md) file.\n\n## Community\n\nIf you need support please use the [discussions section][discussions] or\n[stackoverflow][so] with the `dropzone.js` tag and **not** the GitHub issues\ntracker. Only post an issue here if you think you discovered a bug.\n\nIf you have a feature request or want to discuss something, please use the\n[discussions][] as well.\n\n[discussions]: https:\u002F\u002Fgithub.com\u002Fdropzone\u002Fdropzone\u002Fdiscussions\n[so]: https:\u002F\u002Fstackoverflow.com\u002Fquestions\u002Ftagged\u002Fdropzone.js\n\n> ⚠️ **Please read the [contributing guidelines](CONTRIBUTING.md) before you\n> start working on Dropzone!**\n\n## Main features ✅\n\n- Beautiful by default\n- Image thumbnail previews. Simply register the callback `thumbnail(file, data)`\n  and display the image wherever you like\n- High-DPI screen support\n- Multiple files and synchronous uploads\n- Progress updates\n- Support for large files\n  - Chunked uploads (upload large files in smaller chunks)\n- Support for Amazon S3 Multipart upload\n- Complete theming. The look and feel of Dropzone is just the default theme. You\n  can define everything yourself by overwriting the default event listeners.\n- Browser image resizing (resize the images before you upload them to your\n  server)\n- Well tested\n\n# MIT License\n\nSee the [LICENSE](https:\u002F\u002Fgithub.com\u002Fdropzone\u002Fdropzone\u002Fblob\u002Fmain\u002FLICENSE) file\n","Dropzone 是一个易于使用的拖放库，能够将任何HTML元素转换为支持文件拖拽上传的区域。它支持显示文件预览和上传进度条，并通过XHR处理文件上传过程。该库完全可配置，允许开发者根据需求自定义样式，并且被广泛信任使用。适用于需要简化用户上传体验的各种Web应用场合，如在线图片编辑器、文档管理系统等。",2,"2026-06-11 02:52:59","top_language"]