Skip to content

Collector of most famous libraries to use in console of browser

License

Notifications You must be signed in to change notification settings

MrObe13/LibrariesToConsoleBrowser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Libraries To Console Browser

Collector of most famous libraries to use in console of browser

To use a library in console of your browser, copy and paste in yuor console the text after name of the library.


MOMENT.JS

fetch('https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js')
    .then(response => response.text())
    .then(text => eval(text))
    .then(() => { /* now you can use Moment.js in your console */ })

🆙 TO UPDATE to last version check it on official site 👉 https://momentjs.com/

••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••

LODASH.JS

let el = document.createElement('script');
el.src = 'https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.14/lodash.min.js';
document.getElementsByTagName('head')[0].appendChild(el);

🆙 TO UPDATE to last version check it on official site 👉 https://lodash.com/

••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••

CRYPTO-JS.JS

fetch('https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/crypto-js.min.js')
    .then(response => response.text())
    .then(text => eval(text))
    .then(() => { /* now you can use Crypto.js in your console with Crypto obj */ })

🆙 TO UPDATE to last version check it on official site 👉 https://code.google.com/archive/p/crypto-js/downloads

About

Collector of most famous libraries to use in console of browser

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published