Why I don’t need Algolia Search

Поделиться
HTML-код
  • Опубликовано: 21 окт 2024

Комментарии • 27

  • @CodinginPublic
    @CodinginPublic  Год назад +11

    Forgot about my favorite featured in Fuse, weighted keys. You can weight keys like this:
    const fuse = new Fuse(posts, {
    keys: [
    {
    name: "title",
    weight: 1.5,
    },
    {
    name: "description",
    weight: 1,
    },
    {
    name: "tags",
    weight: 2,
    },
    ],
    });
    The weight can be any number. The higher the number, the more that key is weighted in the algorithm.

  • @qasimarif9921
    @qasimarif9921 Год назад +4

    Dude the timing on this could be better for me. I was looking into using one of the search providers but this looks like the way I’ll go! Thanks and keep up the great content

    • @CodinginPublic
      @CodinginPublic  Год назад

      Hey, awesome! Yeah, it's been sufficient for me. I don't have a lot of intense search needs, but all the more reason to use something lightweight like FuseJS.

  • @MaxProgramming
    @MaxProgramming Год назад +4

    The way you design things is super unique and beautiful!

    • @CodinginPublic
      @CodinginPublic  Год назад +2

      So glad you enjoyed it!

    • @igorskyflyer
      @igorskyflyer Год назад +3

      +1, Chris doesn't realise how great he is in both coding and design!!!

    • @CodinginPublic
      @CodinginPublic  Год назад +2

      🙏 that’s very kind. I enjoy both but definitely feel a beginner in both

    • @igorskyflyer
      @igorskyflyer Год назад +2

      @@CodinginPublic hey, I'm still watching this video, you're interrupting me while I'm watching some high-quality content. 😌😜 Nah, man, you're doing really great, that's just the imposter syndrome (quite common in IT), you'll get over it, trust me. 💪🏼

    • @CodinginPublic
      @CodinginPublic  Год назад +2

      lol

  • @santra528
    @santra528 Год назад

    Great job Chris 👍 We love you 🎉

  • @AZisk
    @AZisk Год назад +1

    This is beautifully done! Thanks for the video

    • @CodinginPublic
      @CodinginPublic  Год назад

      Thanks, Alex! That’s very kind. So glad you enjoyed it!

  • @baileysli6235
    @baileysli6235 Год назад

    12:25 What tool gives you those hints to commands?

  • @harshitjoshi3082
    @harshitjoshi3082 Год назад

    Hi are you using any extension for console. Log statements ?

    • @harshitjoshi3082
      @harshitjoshi3082 Год назад +1

      Got it console ninja thanks man

    • @CodinginPublic
      @CodinginPublic  Год назад +2

      That’s the one! Also Turbo console log for the quick logs.

  • @godofwar8262
    @godofwar8262 Год назад +1

    please make video on js dom manipulation in depth

  • @tonimaunde
    @tonimaunde Год назад

    Thank you 🎉

  • @tovporg
    @tovporg Год назад

    Thank you for a great video. There's one typo on this line in search.js file:
    Read Post
    it should be ${****.href}, not ${****.ref}
    Read Post
    Please continue your wonderful work.