forked from sombochea/verdaccio-ui
refactor: Developers component
Using React hooks
This commit is contained in:
@@ -4579,6 +4579,70 @@
|
||||
"tarball": "https://registry.npmjs.org/jquery/-/jquery-3.3.1.tgz"
|
||||
},
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "dmethvin",
|
||||
"email": "dave.methvin@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "mgol",
|
||||
"email": "m.goleb@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "scott.gonzalez",
|
||||
"email": "scott.gonzalez@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "timmywil",
|
||||
"email": "4timmywil@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "dmethvin",
|
||||
"email": "dave.methvin@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "mgol",
|
||||
"email": "m.goleb@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "scott.gonzalez",
|
||||
"email": "scott.gonzalez@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "timmywil",
|
||||
"email": "4timmywil@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "dmethvin",
|
||||
"email": "dave.methvin@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "mgol",
|
||||
"email": "m.goleb@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "scott.gonzalez",
|
||||
"email": "scott.gonzalez@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "timmywil",
|
||||
"email": "4timmywil@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "dmethvin",
|
||||
"email": "dave.methvin@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "mgol",
|
||||
"email": "m.goleb@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "scott.gonzalez",
|
||||
"email": "scott.gonzalez@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "timmywil",
|
||||
"email": "4timmywil@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "dmethvin",
|
||||
"email": "dave.methvin@gmail.com"
|
||||
@@ -4916,4 +4980,4 @@
|
||||
},
|
||||
"_rev": "60-fed4915c27b9c1e6",
|
||||
"readme": "# jQuery\n\n> jQuery is a fast, small, and feature-rich JavaScript library.\n\nFor information on how to get started and how to use jQuery, please see [jQuery's documentation](http://api.jquery.com/).\nFor source files and issues, please visit the [jQuery repo](https://github.com/jquery/jquery).\n\nIf upgrading, please see the [blog post for 3.3.1](https://blog.jquery.com/2017/03/20/jquery-3.3.1-now-available/). This includes notable differences from the previous version and a more readable changelog.\n\n## Including jQuery\n\nBelow are some of the most common ways to include jQuery.\n\n### Browser\n\n#### Script tag\n\n```html\n<script src=\"https://code.jquery.com/jquery-3.3.1.min.js\"></script>\n```\n\n#### Babel\n\n[Babel](http://babeljs.io/) is a next generation JavaScript compiler. One of the features is the ability to use ES6/ES2015 modules now, even though browsers do not yet support this feature natively.\n\n```js\nimport $ from \"jquery\";\n```\n\n#### Browserify/Webpack\n\nThere are several ways to use [Browserify](http://browserify.org/) and [Webpack](https://webpack.github.io/). For more information on using these tools, please refer to the corresponding project's documention. In the script, including jQuery will usually look like this...\n\n```js\nvar $ = require(\"jquery\");\n```\n\n#### AMD (Asynchronous Module Definition)\n\nAMD is a module format built for the browser. For more information, we recommend [require.js' documentation](http://requirejs.org/docs/whyamd.html).\n\n```js\ndefine([\"jquery\"], function($) {\n\n});\n```\n\n### Node\n\nTo include jQuery in [Node](nodejs.org), first install with npm.\n\n```sh\nnpm install jquery\n```\n\nFor jQuery to work in Node, a window with a document is required. Since no such window exists natively in Node, one can be mocked by tools such as [jsdom](https://github.com/tmpvar/jsdom). This can be useful for testing purposes.\n\n```js\nrequire(\"jsdom\").env(\"\", function(err, window) {\n\tif (err) {\n\t\tconsole.error(err);\n\t\treturn;\n\t}\n\n\tvar $ = require(\"jquery\")(window);\n});\n```"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user