Find the easiest way for you to get started below.
Bitsycode
DownloadContribute
ContributeBitsycode CDN
jsDelivr
The awesome CDN service over at jsDelivr provide CDN support for Bitsycode's JavaScript. Just use these Bitsycode CDN links.
<!-- Latest stable Bitsycode version -->
<script src="https://cdn.jsdelivr.net/bitsycode/latest/bitsycode.min.js"></script>
Implementing Bitsycode
Bitsycode can be used in two ways, you could implement Bitsycode on your website via jsDelivr which is a CDN, or you could download the Bitsycode file and add it to your project.
Please note that certain of the BitsyCode methods will require jQuery to be included, as shown to you in the basic template(below). Only the latest versions of jQuery should be included, or from jQuery version(1.11.3)
Precompiled Bitsycode
Once downloaded, unzip the compressed folder to see the structure of (the compiled) BitsyCode. You'll see something like this:
Bitsycode/ └── js/ └── bitsycode.min.js
This simplest form of Bitsycode, precompiled files for fast and quick implementation in nearly any web project. We provide you compiled and minified JS (bitsycode.min.*).
Basic template
Getting started with Bitsycode is simple, have a look at our basic HTML template below.
You may copy the HTML below to begin working with a minimal HTML document with Bitsycode included.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Bitsycode Simple Template</title>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<h1>Hello, world!</h1>
<!-- jQuery (needed for certain of Bitsycode's JavaScript methods) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://cdn.jsdelivr.net/bitsycode/1.0.0/bitsycode.min.js"></script>
</body>
</html>