├── dist/ # Output directory for bundled files
├── src/ # Source directory for HTML, CSS, and JavaScript files
│ ├── css/ # CSS files
│ ├── js/ # JavaScript files
│ └── index.html # Main HTML file
├── .gitignore # Git ignore file
├── package.json # NPM package configuration file
├── rollup.config.js # Rollup configuration file
└── README.md # Project documentation
- Node.js installed
-
Clone the repository:
git clone git@github.com:ckroeger/leaflet-maps-made-easy.git cd leaflet-maps-made-easy
-
Install the dependencies:
npm install
Start the live server and watch for changes:
npm run dev
Build an bundle:
npm run build