All Projects → Bijoujs → Bijou.js

Bijoujs / Bijou.js

Licence: GPL-3.0 license
Bijou.js: Useful JavaScript snippets in one simple library

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to Bijou.js

Jquery.redirect
jQuery Redirect Plugin
Stars: ✭ 182 (+506.67%)
Mutual labels:  yarn, cdn
awesome-ecommerce
Collect and develop Open Source or Free Projects for building ecommerce platform easy and fast and free
Stars: ✭ 39 (+30%)
Mutual labels:  snippets, code
Webpack Cdn Plugin
A webpack plugin that use externals of CDN urls for production and local node_modules for development
Stars: ✭ 306 (+920%)
Mutual labels:  yarn, cdn
Awesome Woocommerce
Plugins and code snippets to improve your WooCommerce store.
Stars: ✭ 279 (+830%)
Mutual labels:  snippets, code
Code Snippets Wp Speed Up
Code Snippets for WordPress and WooCommerce speed up, which can be imported into the plugin.
Stars: ✭ 168 (+460%)
Mutual labels:  snippets, code
Code Snippets
Code Snippets WordPress Plugin
Stars: ✭ 226 (+653.33%)
Mutual labels:  snippets, code
code-examples
Short code snippets written by our open source community!
Stars: ✭ 60 (+100%)
Mutual labels:  snippets, code
Code Notes
A simple code snippet & gist manager for developers built with Electron & Vue.js 🚀
Stars: ✭ 919 (+2963.33%)
Mutual labels:  snippets, code
Beginners C Program Examples
Simple, Short and Sweet beginners friendly C language programs
Stars: ✭ 138 (+360%)
Mutual labels:  snippets, code
Bookmarks.dev
Bookmarks and Code Snippets Manager for Developers & Co
Stars: ✭ 218 (+626.67%)
Mutual labels:  snippets, code
codesnip
A code bank designed with Pascal in mind
Stars: ✭ 62 (+106.67%)
Mutual labels:  snippets, code
stencil-snippets
An extension to add some snippets on vs code
Stars: ✭ 21 (-30%)
Mutual labels:  snippets
indexed-cache
A tiny Javsacript library for sideloading static assets on pages and caching them in the browser's IndexedDB for longer-term storage.
Stars: ✭ 56 (+86.67%)
Mutual labels:  cdn
30-seconds-of-csharp
Short C# code snippets for all your development needs
Stars: ✭ 132 (+340%)
Mutual labels:  snippets
ax-editor
Ax is a code editor with syntax highlighting that runs in your terminal written completely in Swift.
Stars: ✭ 42 (+40%)
Mutual labels:  code
SwiftyCodeView
Fully customizable UI Component for verification codes written in swift with RxSwift support!
Stars: ✭ 86 (+186.67%)
Mutual labels:  code
relay-starter-kit
💥 Monorepo template (seed project) pre-configured with GraphQL API, PostgreSQL, React, Relay, Material UI.
Stars: ✭ 3,513 (+11610%)
Mutual labels:  yarn
coderz
coderz.ir
Stars: ✭ 25 (-16.67%)
Mutual labels:  code
profiling
Non-discriminatory profiling of Ruby code leveraging the ruby-prof gem
Stars: ✭ 12 (-60%)
Mutual labels:  code
vite-vue-admin
🎉🎉使用Vite + Vue3 + TypeScript + Element-plus + Mock开发的后台管理系统🎉🎉
Stars: ✭ 97 (+223.33%)
Mutual labels:  yarn

NPM Downloads GitHub stars Website Gitpod Ready-to-Code Rate on Openbase

Bijou.js

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!

How to use Bijou.js

Thanks for using Bijou.js! It's pretty simple to use, but here's the guide:

CDN

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>

Imports

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>

NodeJS

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());

Usage

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 _$

Who made Bijou.js?

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.

Why use Bijou?

Well, a few reasons:

  1. I made it. 😛
  2. It's useful! (If it's not useful just tell me what you want added in the issues tab! I'd be happy to add it!)
  3. It's jam packed full of functions that are super useful but hard to think of!
  4. It's very easy to use, and I'm happy to add anything you think of!

(You can probably see I'm pretty desperate for people to use this.)

Installation

Bijou.js is available in NodeJS through yarn and NPM

npm i bijou.js or yarn add bijou.js

Or through a CDN

CDN Url's

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

Contributors

Thanks goes to these wonderful people (emoji key):


--Explosion--

💻 🎨 🐛 📖 🚇 ⚠️ 🖋 🤔 📦 💡

-Xanimation-

📖 🐛

AFK

🐛

CubeyTheCube

💻

GrahamSH

🐛 💻 📖

MTM828

🖋

Pufferfish101007

🐛 📖 ⚠️ 🔧 💬

Sly Little Fox

🐛 🤔

TheColaber

🐛 💻 📖

TouchIsNotAGoodCoder

🐛

William Horning

💻 📖

apple502j

🛡️

retronbv

💻 🤔 🐛 📖

thecoder876

🐛

This project follows the all-contributors specification. Contributions of any kind welcome!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].