DEV Community

Cover image for Build a warehouse management solution with react, django, react-native and AWS.
Desmond
Desmond

Posted on

 

Build a warehouse management solution with react, django, react-native and AWS.

Update on the project.

I worked on the list views today.
All Products, Shipments, Customers

Fullstack App

Up next I have to work on Authentication from the frontend. My Django Backend already exposes a route '/api-auth' which uses basic authentication as it's authentication scheme.

Desmond's Fullstack App

Top comments (3)

Collapse
 
kachumahara profile image
Kenneth Achumahara

Thats awesome, if you want collaboration on this, hit me up

Collapse
 
nyamador profile image
Desmond

Sure thing Kenneth

Collapse
 
nyamador profile image
Desmond

Here's a link to the repo.
Not well documented but I'm working on a roadmap

github.com/Nyamador/wms

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!