Posts

Showing posts with the label frontend

Interesting frontend repos

Interesting frontend repos (libs) https://www.npmjs.com/package/slugify - slug the string puppeteer -  Puppeteer is a JavaScript library which provides a high-level API to control Chrome or Firefox over the  DevTools Protocol  or  WebDriver BiDi . Puppeteer runs in the headless (no visible UI) by default https://github.com/creativetimofficial/ct-nextjs-material-kit-pro expressjs/body-parser - Node.js body parsing middleware. Parse incoming request bodies in a middleware before your handlers, available under the req.body property. https://github.com/sachinchoolur/lightGallery - great Gallery and Slider - lightGallery !  https://www.npmjs.com/package/react-google-autocomplete - Google Autocomplete for React https://www.npmjs.com/package/qs -  A querystring parsing and stringifying library with some added security. And great article how to use it  https://medium.com/@onejosefina/interesting-little-javascript-library-qs-f959250cf926

If your public key is not working from .env variable file (frontend)

If your public key is not working from .env variable file It depends from your framework  you should prepend your variable in the code with prefix : for example for the NextJS frontend  part it is NEXT_PUBLIC_ for other React based frontend frameworks it could be  REACT_APP_

Frontend'er tools (unfinished)

Image
Frontend'er tools  https://github.com/mdn - MDN Web Docs is an open-source, collaborative project that documents web platform technologies, including CSS, HTML, JavaScript, and Web APIs. We also provide extensive 🧑‍🎓 learning resources for beginning developers and students. https://jsbin.com/?html,output  - JS Bin is a tool for experimenting with web languages. In particular HTML, CSS and JavaScript, but JS Bin also supports other languages (like Markdown, Jade and Sass). https://glitch.com/ - Glitch is the friendly place where everyone builds the web. Start a new blog , play with React , or build new worlds with WebXR . Let’s go! pnpm - Fast, disk space-efficient package manager https://react-hook-form.com - React form library https://usehooks.com - A tons of using hooks https://jqlang.github.io/jq/ - jq is a lightweight and flexible command-line JSON processor. JavaScript Playground  - cool frontend sandbox Validation: yup  & zod  , compar...