DEV Community

Cover image for Day-1 of Getting an Paying Job
Jayant
Jayant

Posted on • Updated on

Day-1 of Getting an Paying Job

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.

Top comments (6)

Collapse
 
ben profile image
Ben Halpern

Good luck!

Collapse
 
praneshchow profile image
Pranesh Chowdhury

Best wishes for you, keet it up πŸ‘πŸ»

Collapse
 
schalkneethling profile image
Schalk Neethling • Edited

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.

Collapse
 
koladev profile image
Mangabo Kolawole

Good luck on your journey!

Collapse
 
jay818 profile image
Jayant • Edited

Thanks bro

Collapse
 
jay818 profile image
Jayant

Let's Connect - twitter.com/Jayant818x