DEV Community

Bigaston
Bigaston

Posted on

 

link-ga.me

Hello!
I've create a new little website, called link-ga.me. It's an old project I've started last year (you can find the first version on link-ga.me. It's a website inspired by Linkfire website but for games.

In this website, you can add some link to marketplace (like Itch.io, Newgrounds, Steam, Google Play and other), a little description, a name for your game and a picture.

All the data is store into my server in a lowdb database (it's a JSON db store localy). To create a game, you need to login with a Google account, because I don't know, for know, how to store password and login with secure data.

For tech, I use NodeJS, ExpressJS, Pug, LowDB, and Bootstrap. It's not a perfect website, maybe I can improve it (and I've to improve it), but I want to post this little news.

At the moment, the V2 is not open but maybe in one or two weeks!

Here a little demo:

Image

So it's all for know. I'm not a great web developper so I use tech I've learn.

So have a nice day!

Latest comments (0)

typescript

11 Tips That Make You a Better Typescript Programmer

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!