4
FuckTS
4y

For all the react developers.
I just started learning react 3 months ago and I made a simple crud todo-list with express and MySQL, I want to make a good app that will help me in my job search, so pls suggest me something.

Comments
  • 3
    Consider this: Admin boards with document reporting capabilities.

    Say for example an institution has it's own budget request tool. Say that this institution holds a science department, a maintenance department as well. Each department has different sections. A user should be able to log in as a member of a particular section of a provided department and add a budget request for something.

    As an example, consider that an electrical technician requires new tools, he should be able to log in and request those tools, brand, tool name, cost(estimated at least) and if required an image. All of these things deal with basic concepts such as auth and authorization, request verification tokens as well as file handling capabilities as well as CRUD capabilities. The trick would be for an admin member to be able to generate the reports for each department, such as a CSV of data in which items are listed as well as the PDF of each request.
  • 1
    @AleCx04 (continued) this would be impressive in my opinion since it is something that I have seen commonly used by small to medium and large sized institutions. Extra points for making the application mobile friendly and of course pretty albeit people on these institutions are more than content with having something basic with semantic-ui(which has some very easy ready made react libraries) as well as bootstrap. They look generic but for intranet based applications no one really cares what they look.

    Also, I can imagine that your username stands for Fuck Typescript? Adding TS to the mix makes it even more impressive since it means that you have the skills to use a proper type system(to an extent at least although I've had no complications) inside a large and well constructed application.

    I am the manager of the web development department at my institution, if someone were to show me something like this I would be very impressed!
  • 1
    @AleCx04 lmao yeah I'm not used to using typescript so sometimes I get some weird errors or end up using any in an entire file. Looks like ur app is gonna take some time. I'll check it out I guess.
  • 1
    Whatever Alex said. If it is too complex throw in some authentication to start with.
Add Comment