Skip to content

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

Stars

2 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors