{"id":21666139,"url":"https://github.com/e5r/jquery-toad","last_synced_at":"2026-05-08T15:45:14.123Z","repository":{"id":57298777,"uuid":"138966943","full_name":"e5r/jquery-toad","owner":"e5r","description":"The old and dear jQuery - O velho e querido jQuery","archived":false,"fork":false,"pushed_at":"2019-02-21T12:57:30.000Z","size":2144,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-23T02:41:14.329Z","etag":null,"topics":["architecture","e5r","ecmascript","ecmascript5","javascript","jquery","toad"],"latest_commit_sha":null,"homepage":"https://e5r.tools/jquery-toad","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/e5r.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}},"created_at":"2018-06-28T04:43:08.000Z","updated_at":"2019-03-04T13:31:59.000Z","dependencies_parsed_at":"2022-08-26T18:02:43.481Z","dependency_job_id":null,"html_url":"https://github.com/e5r/jquery-toad","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/e5r/jquery-toad","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e5r%2Fjquery-toad","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e5r%2Fjquery-toad/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e5r%2Fjquery-toad/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e5r%2Fjquery-toad/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/e5r","download_url":"https://codeload.github.com/e5r/jquery-toad/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e5r%2Fjquery-toad/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259346649,"owners_count":22843765,"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","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":["architecture","e5r","ecmascript","ecmascript5","javascript","jquery","toad"],"created_at":"2024-11-25T11:19:45.511Z","updated_at":"2026-05-08T15:45:09.089Z","avatar_url":"https://github.com/e5r.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"![jQuery TOAD](website/assets/images/jquery-toad-logo.png)\n\n[jQuery][JQUERY] TOAD (**T**he **O**ld **A**nd **D**ear) é, antes de mais nada, meu tributo ao\n__velho e querido jQuery__.\n\nTrata-se de uma biblioteca simples que ajuda você a organizar seu código de aplicação baseado em [jQuery][JQUERY].\n\n\n\n## Construa à partir do código fonte\n\nVocê vai precisar de:\n* [NodeJS][NODEJS]\n* [Git][GIT]\n\nDaí é tão simples como executar três comandos no shell:\n\n```shell\n$ git clone 'https://github.com/e5r/jquery-toad'\n$ cd jquery-toad\n$ npm run build\n$ npm test # opcional [executa os testes de unidade]\n```\n\nPronto! Já existe uma pasta `dist` com os aquivos de distribuição da biblioteca e você pode usar como desejar.\n\n```shell\n$ cp dist/* ../my-app/lib\n```\n\n```html\n\u003cscript src=\"lib/jquery.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"lib/jquery-toad.js\"\u003e\u003c/script\u003e\n```\n\n## Use o CDN UNPKG\n\n```html\n\u003cscript src=\"https://unpkg.com/jquery/dist/jquery.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"https://unpkg.com/jquery-toad/dist/jquery-toad.js\"\u003e\u003c/script\u003e\n```\n\n## Use o NUGET\n\n```powershell\nPM\u003e Install-Package jquery-toad\n```\n\n```html\n\u003cscript src=\"~/Scripts/jquery-{version}.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"~/Scripts/jquery-toad-{version}.js\"\u003e\u003c/script\u003e\n```\n\n## Use o NPM\n\n```shell\n$ mkdir my-app\n$ cd my-app\n$ npm init -y\n$ npm install --save jquery-toad\n```\n\n```html\n\u003cscript src=\"node_modules/jquery/dist/jquery.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"node_modules/jquery-toad/dist/jquery-toad.js\"\u003e\u003c/script\u003e\n```\n\n\u003e **PS:** Durante a instalação com o **NPM** você será alertado quanto a uma vulnerabilidade crítica. Isso ocorre porque dependemos da jQuery 1.12.4, e é a própria jQuery que tem essa vulnerabilidade. Mas nós mantemos essa dependência legada somente por questões de compatibilidade com navegadores antigos (_leia-se \"IE8\"_). Nós recomendamos o uso de uma versão mais recente da jQuery que corrija essa vulnerabilidade (\u003e= 3.0) à não ser que você precise suportar navegadores antigos.\n\n## Documentação\n\nA documentação oficial está em [nosso site][WEBSITE].\n\n[JQUERY]: http://jquery.com/  \"jQuery web site\"\n[WEBSITE]: https://e5r.github.io/jquery-toad \"Documentação Oficial\"\n[NODEJS]: https://nodejs.org\n[GIT]: https://git-scm.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fe5r%2Fjquery-toad","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fe5r%2Fjquery-toad","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fe5r%2Fjquery-toad/lists"}