Smollbite offers straightforward microservices without using
package managers or complicated installation steps.
No installing of libraries to use
Use your native programming language power
No installation of 3rd party, no worries
<img src='https://qr.smollbites.com?data=hello+world' />
Need some image storage for your MVPs or prototype?
Smollbite offers image upload and will return the URL for your to use later.
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"
* }
*/
})
Need to be notified via email? No worries!
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",
}
})
})
fetch('https://mock.smollbites.com/CODE')
.then((response) => response.json())
.then((response) => {
console.log(response)
})