Giter Club home page Giter Club logo

go-fullstack's Introduction


Hi, I'm Loïs

Welcome to my profile page !

👨‍👩‍👧‍👧 I'm in Love, Mom and Developer!

I live in France, near Paris 🥖. I have always been passionate about new technologies and digital. 💡.

  • 🔭 I'm currently working on something cool😉
  • 💬 Ask me about JavaScript, PHP or Symfony.
  • ⚡ Fun fact: I ❤️ video games

My Hobbies:

  • 🥋 I pratice judo. I'm black belt
  • 🚴🏽‍♀️ I'm doing some mountain biking and running 👟
  • 💻 I love exploring new tech stack and building cool stuffs
  • 📰 Reading & writing tech news

🔧 Technologies & Tools

💜 loving vue symfony

👨🏻‍💻 Languages and Tools

Back
NodeJS Express Symfony
Package Manager
NPM Composer
Versionning
Git GitHub GitLab
Debugging
Jest
🎓🚀 Learning
Typescript

📈 GitHub Stats

Loïs's github stats [Top Langs


⚙️☄️ My tools
  • OS: Windows 10
  • Laptop: Asus ZenBook UX481
  • Browser: Chrome 🕸️ and Firefox 🔥
  • Terminal: Bash
  • Editor: VSCode - IntelliJ IDEA
  • To Stay Updated: Dev.to, Medium, Instagram.

🧠 Other knowledge
  • Accounting
  • customer relationship management
  • commercial

📫 How to reach me:

👨‍💻 Learn more about my projects at: https://github.com/Marcelin97 💼 any freelance work? email

📕 dev.to | 📦 npm | 📷 instagram | 👔 linkedin

⬆ Back to Top

go-fullstack's People

Contributors

marcelin97 avatar

Watchers

 avatar

go-fullstack's Issues

Optimisez_la_structure_du_back-end

  • La première chose que nous allons faire est de dissocier notre logique de routing et la logique globale de l'application. Créez, dans votre dossier backend , un dossier routes puis, dans ce nouveau dossier, un fichier stuff.js . Celui-ci contiendra la logique de nos routes stuff
  • créons un routeur Express. Jusqu'à présent, nous avions enregistré nos routes directement dans notre application. Maintenant, nous allons les enregistrer dans notre routeur Express, puis enregistrer celui-ci dans l'application.
  • remplacer la constante app par celle-ci : const router = express.Router();
  • Couper toutes nos routes de app.js et de les coller dans notre routeur. Veillez à remplacer toutes les occurrences de app par router , car nous enregistrons les routes dans notre routeur.
  • /api/stuff doit être supprimé de chaque segment de route. Si cela supprime une chaîne de route, veillez à laisser une barre oblique / (reportez-vous au code ci-dessus).
  • Veillez également à remplacer l'élément app.use() final par app.get() si ce n'est pas déjà fait, car cette route ne concerne que les demandes GET.
  • enregistrer notre nouveau routeur dans notre fichier app.js . D'abord, nous devons l'importer :
    const stuffRoutes = require('./routes/stuff')
  • Nous l'enregistrerons ensuite comme nous le ferions pour une route unique. Nous voulons enregistrer notre routeur pour toutes les demandes effectuées vers /api/stuff . Par conséquent, tapez :
    app.use('/api/stuff', stuffRoutes);

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.