DEV Community

Cover image for Twitter Clone with Vue.js
Cihat Salik
Cihat Salik

Posted on • Originally published at github.com

1

Twitter Clone with Vue.js

Source Code: https://github.com/cihat/twitter-clone
Live: https://cihat.github.io/twitter-clone/

My Twitter Clone project that I wrote with Vue.js using the Random User and Quotable API's.

Top comments (2)

Collapse
 
sloan profile image
Sloan the DEV Moderator

Hi there, we encourage authors to share their entire posts here on DEV, rather than mostly pointing to an external link. Doing so helps ensure that readers don’t have to jump around to too many different pages, and it helps focus the conversation right here in the comments section.

If you choose to do so, you also have the option to add a canonical URL directly to your post.

Collapse
 
cihat profile image
Cihat Salik

Thanks for your comment, yes you are right, it would be more comfortable to comment here without having to jump it. I will pay attention to this. Thank you again.

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!

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay