Bijou.js is a library of super helpful JavaScript snippets! It has a bunch of useful snippets for all your coding needs! If there's something that's not in here currently but you use frequently, feel free to submit an issue! I'd be happy to add it! Bijou's goal is to eliminate the need to copy paste the same thing from StackOverflow, another project or anywhere else! So if you ever find yourself typing the same thing over and over again, copy pasting the same snippet as you did a few days ago, use Bijou.js! If the snippet you're using isn't in Bijou.js, just submit an issue with the code!
Thanks for using Bijou.js! It's pretty simple to use, but here's the guide:
CDNJS
<script src="https://cdnjs.cloudflare.com/ajax/libs/Bijou.js/8.2.3/bijou.js" type="module"></script>
jsDelivr:
<script src="https://cdn.jsdelivr.net/npm/bijou.js@latest/bijou.js" type="module"></script>
UNPKG
<script src="https://unpkg.com/bijou.js@latest/bijou.js" type="module"></script>
You can also import parts of bijou, for example only the uuid() function:
<script type="module">
import { uuid } from "https://cdnjs.cloudflare.com/ajax/libs/Bijou.js/8.2.3/bijou.js";
console.log(uuid()); //Same as _$.uuid() when importing the whole library.
</script>
or you can import the whole thing:
<script type="module">
import * as _$ from "https://cdnjs.cloudflare.com/ajax/libs/Bijou.js/8.2.3/bijou.js";
console.log(_$.uuid());
</script>
Bijou.js is included in NodeJS through NPM and yarn! Depending on the platform you're using you may have to install it through npm or yarn:
npm install bijou.js
or
yarn add bijou.js
Then just require it in your code:
const _$ = require("bijou.js");
console.log(_$.uuid());
To use Bijou.js simply call one of the many functions built into it!
_$.anyFunction(); //You can name bijou anything when using imports, or when using node you can name it using require();
Such as this one!
_$.uuid(); //Results in something like this: c3435c88-0a20-491f-9391-3afde9c4a2d1
If you need to use a custom prefix than you can set a variable that you want to use as Bijou.js to _$
I (@Explosion-Scratch) started it and continually maintain and supervise the project, but many other amazing people have helped. See the contributors section for more info.
Well, a few reasons:
(You can probably see I'm pretty desperate for people to use this.)
Bijou.js is available in NodeJS through yarn and NPM
npm i bijou.js
or
yarn add bijou.js
https://cdnjs.cloudflare.com/ajax/libs/Bijou.js/8.2.3/bijou.js
https://esm.run/bijou.js
https://cdn.jsdelivr.net/npm/bijou.js
https://unpkg.com/bijou.js
https://cdn.jsdelivr.net/gh/Bijou-js/bijou.js@latest/bijou.js
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!