Day-1 of Getting an Paying Job

Jayant - Mar 23 - - Dev Community

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
Enter fullscreen mode Exit fullscreen mode

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.

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .