Skip to content

Natouche68/archery-scorer-beta

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Archery Scorer

This is a tool for note the score in archery.

This website uses :

  • Halfmoon : A CSS framework with a built-in dark mode.
  • Web Components : A native API for building components.
  • zipcelx : A very small library for creating .xlsx files.
  • Progressive Web Apps : With PWA, you can dowload a website and use it offline.

There is no dependicies. All is native or imported via CDN.

This website is hosted on Render. You can visit this app on :
https://archery-scorer.onrender.com/

Structure of a .archeryscorer file

A .archeryscorer file is like a JSON file. It looks like this :

{
    "volee_number": 6,
    "arrow_number": 6,
    "score": [
        [ 10, 10, 9, 9, 8, 7 ],
        [ 10, 9, 9, 9, 8, 7 ],
        [ 10, 10, 10, 9, 8, 7 ],
        [ 10, 10, 9, 8, 8, 7 ],
        [ 10, 10, 9, 9, 7, 7 ],
        [ 10, 10, 9, 9, 8, 6 ]
    ]
}

It can be a little different, because the indentation is the JS file is also in the .archeryscorer file.