youtube-downloader

Simple Next.js website and interface to download YouTube videos to mp3 or mp4 files with URLs
git clone https://codeberg.org/night0721/youtube-downloader
Log | Files | Refs | README | LICENSE

.gitignore (403B)


      1 # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
      2 
      3 # dependencies
      4 /node_modules
      5 package-lock.json
      6 /.pnp
      7 .pnp.js
      8 
      9 # testing
     10 /coverage
     11 
     12 # next.js
     13 /.next/
     14 /out/
     15 
     16 # production
     17 /build
     18 
     19 # misc
     20 .DS_Store
     21 *.pem
     22 
     23 # debug
     24 npm-debug.log*
     25 yarn-debug.log*
     26 yarn-error.log*
     27 .pnpm-debug.log*
     28 
     29 # local env files
     30 .env*.local
     31 
     32 # vercel
     33 .vercel
     34 
     35 # typescript
     36 *.tsbuildinfo
     37 next-env.d.ts