Smollbite Icon
SmollBites

Giving superpowers to your MVPs and Prototypes.

Smollbite offers straightforward microservices without using
package managers or complicated installation steps.

Smollbite Banner Image

Zero Installation

No installing of libraries to use

Straightforward Use

Use your native programming language power

Almost conflictless

No installation of 3rd party, no worries

Microservices

Email logo

QRLink: Code via link

Generate a QR Code just using 1 line of code.

> Read docs
html
<img src='https://qr.smollbites.com?data=hello+world' />
Email logo

Bucket: Upload Image

Need some image storage for your MVPs or prototype?

Smollbite offers image upload and will return the URL for your to use later.

javascript
const fileInput = document.getElementById('fileInput');
const file = fileInput.files[0];
const formData = new FormData()
formData.append('file', file);

fetch(
	'https://bucket.smollbites.com/YOUR_BUCKET_ID/upload'
	,{
  	method: "POST",
		body: formData
	}
)
.then((response) => response.json())
.then((response) => {
	console.log(response);
	/**
	 * {
	 * 	success: true,
	 * 	path: "....com/YOUR_BUCKET_ID/YOUR_IMAGE_ID.png"
	 * }
	 */
})
Email logo

Emailer: Notify via Email

Need to be notified via email? No worries!

  1. Contact form
  2. Webhook
  3. Newsletter
  4. Feedback form
javascript
fetch('https://emailer.smollbites.com/CODE/send', {
	method: "POST",
	headers: {
		'Content-Type': 'application/json'
	},
	data: JSON.stringify({
		fields: {
			first_name: "Juan",
			middle_name: "Dela",
			last_name: "Cruz",
		}
	})
})
Email logo

Mock: Your Sample Data

Create a mock API endpoint in a flash

javascript
fetch('https://mock.smollbites.com/CODE')
.then((response) => response.json())
.then((response) => {
  console.log(response)
})