Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/e5r/jquery-toad
The old and dear jQuery - O velho e querido jQuery
https://github.com/e5r/jquery-toad
architecture e5r ecmascript ecmascript5 javascript jquery toad
Last synced: about 2 months ago
JSON representation
The old and dear jQuery - O velho e querido jQuery
- Host: GitHub
- URL: https://github.com/e5r/jquery-toad
- Owner: e5r
- License: apache-2.0
- Created: 2018-06-28T04:43:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-21T12:57:30.000Z (almost 6 years ago)
- Last Synced: 2024-11-19T11:52:31.744Z (2 months ago)
- Topics: architecture, e5r, ecmascript, ecmascript5, javascript, jquery, toad
- Language: HTML
- Homepage: https://e5r.tools/jquery-toad
- Size: 2.04 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![jQuery TOAD](website/assets/images/jquery-toad-logo.png)
[jQuery][JQUERY] TOAD (**T**he **O**ld **A**nd **D**ear) é, antes de mais nada, meu tributo ao
__velho e querido jQuery__.Trata-se de uma biblioteca simples que ajuda você a organizar seu código de aplicação baseado em [jQuery][JQUERY].
## Construa à partir do código fonte
Você vai precisar de:
* [NodeJS][NODEJS]
* [Git][GIT]Daí é tão simples como executar três comandos no shell:
```shell
$ git clone 'https://github.com/e5r/jquery-toad'
$ cd jquery-toad
$ npm run build
$ npm test # opcional [executa os testes de unidade]
```Pronto! Já existe uma pasta `dist` com os aquivos de distribuição da biblioteca e você pode usar como desejar.
```shell
$ cp dist/* ../my-app/lib
``````html
```
## Use o CDN UNPKG
```html
```
## Use o NUGET
```powershell
PM> Install-Package jquery-toad
``````html
```
## Use o NPM
```shell
$ mkdir my-app
$ cd my-app
$ npm init -y
$ npm install --save jquery-toad
``````html
```
> **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 (>= 3.0) à não ser que você precise suportar navegadores antigos.
## Documentação
A documentação oficial está em [nosso site][WEBSITE].
[JQUERY]: http://jquery.com/ "jQuery web site"
[WEBSITE]: https://e5r.github.io/jquery-toad "Documentação Oficial"
[NODEJS]: https://nodejs.org
[GIT]: https://git-scm.com