Hi Friends π
I am starting a Journey where I try to learn new things and hopefully land a high paying Job.
So Here is the Recap of my Day - 1.
- β Serverless Backends
- β Completed the user Flow and Login setup of my final Year project - DigiVote - A decentralized Voting App.
Here is a Summary of what I have learned
Serverless Backends
-
serverless
is a backend deployment in which cloud providers dynamically manages the allocation and scaling the server.- Some of the Popular Cloud providers are Cloudflare Workers [Free setup, no CC Required] Google Cloud Functions AWS Lambda
- I explored Cloudflare Workers and deployed an app on Cloudflare.
- Under the hood, Cloudflare doesn't uses node.js, they have made their own wrapper on V8 engine, so you don't use
Express
for routing purposes. - A good alternative of this can be - [Hono]https://hono.dev/
import { Hono } from 'hono'
const app = new Hono()
// c here stand for context, it contains both request and response object
app.get('/', (c) => c.text('Hello Cloudflare Workers!'))
export default app
DigiVote - A Decentralized Voting App
Similar to all the Voting app online, But it will have these extra features.
- OTP Verification
- Image Verification
- A Disposable Wallet with a token in it [As everyone doesn't have a wallet]
if you have any recommendations, feel free to share it βΊοΈ.
Thank You.
Top comments (6)
Good luck!
Best wishes for you, keet it up ππ»
For DigiVote, enabling Single Sign-On would be a great feature. You can look at something like github.com/boxyhq/jackson to help you with this.
Good luck on your journey!
Thanks bro
Let's Connect - twitter.com/Jayant818x