Giter Club home page Giter Club logo

fritter's People

Contributors

cemalokten avatar jijip41 avatar lopezelpesado avatar moggach avatar

Forkers

moggach

fritter's Issues

Code Review ๐Ÿ‰

Well done on a complete application with tests and complete functionality, and for getting it deployed to Heroku! You've managed to get so much done in a short space of time, working in a team for the first time! Fantastic job.๐ŸŒŸ

๐Ÿง‡ Love the name, icons and imagery on your site.

๐ŸฎGreat readme, and love the inclusion of cypress tests and lighthouse.

โž•โž– Uneven commits - itโ€™s good to make sure to think about having an even amount of commits between you.

๐Ÿง Meta description can be included too!

๐Ÿš‚ You know this already but you could modularise your code a bit more! Generally speaking, itโ€™s a good habit to get into now while your file structures are small, to separate your concerns as much as possible. You can have the initial server setup in server.js, and another file can contain your routes (server.get and server.post) etc.

โ€จReally well done!

Love the design

Nice, clean, accessible design and a great concept :) Really well done. ๐Ÿฆ

Modularisation

It's a good practice to divide code by features:

fritter/server.js

Lines 61 to 70 in fb80839

server.post('/', bodyParser, (request, response) => {
// Collects new frit message
const newFritMessage = request.body.message;
const newFritName = request.body.name;
const newFrit = {
user: newFritName || 'annonymouse ๐Ÿญ',
message: newFritMessage,
time: new Date(),
};

The request/response part of the code above could be a separate function in a dedicated routes folder. ๐Ÿง๐Ÿ’

Fantastic readme!

Well done for having a highly detailed, engaging readme ๐ŸŽ‰

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.