Skip to content

ckroeger/leaflet-maps-made-easy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tech Talk leaflet - maps made easy

Teaser Image

Structure

├── 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

Getting Started

Prerequisites

  • Node.js installed

Installation

  1. Clone the repository:

    git clone git@github.com:ckroeger/leaflet-maps-made-easy.git
    cd leaflet-maps-made-easy
  2. Install the dependencies:

    npm install

Development

Start the live server and watch for changes:

npm run dev

Build

Build an bundle:

npm run build

Sources