HaQadosch / freecodecamp_frontendlibraries

Front End Libraries Certifications from FreeCodeCamp

Home Page:https://www.freecodecamp.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

freecodecamp_frontendlibraries

All the projects are in their respective folder inside Projects/

Each project is created using npx create-react-app my-project --template typescript

The validation of the code is done via the FCC chai test runner. It is inserted in some projects via the following snippet:

  <script>
    function loadFCC_Test() {
      const script = document.createElement('script')
      script.src = 'https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js'
      script.async = true
      document.body.append(script)
    }

    loadFCC_Test();
  </script>

at the bottom of the index.html page.

You can see it in calculator and pomodoro.

About

Front End Libraries Certifications from FreeCodeCamp

https://www.freecodecamp.org

License:MIT License


Languages

Language:TypeScript 65.0%Language:HTML 15.4%Language:CSS 14.7%Language:JavaScript 4.3%Language:Makefile 0.6%