PL: Aplikacja pobierająca wszystkie jednostki terytorialne w Polsce wykorzystując środowisko Node.js. Dane pochodzą ze strony https://pl.wikipedia.org/wiki/Lista_gmin_w_Polsce. Została wykorzystana technika Web Scraping'u.
ENG: Application downloading all territorial units in Poland using Node.js environment. The data comes from https://pl.wikipedia.org/wiki/Lista_gmin_w_Polsce. Web scraping technique was used.
The application was written using:
Node version: 14.16.0
npm version: 6.14.11
You have to install the packages via npm:
npm install
All required packages will be downloaded.
In order to start the application you need to run the command:
npm start
Here is an excerpt of the script output data:
{
"Voivodeships": [
{
"Name": "Dolnośląskie",
"Districts": [
{
"Name": "Bolesławiecki",
"Municipalities": [
{
"Name": "Bolesławiec"
},
{
"Name": "Gromadka"
},
{
"Name": "Nowogrodziec"
},
{
"Name": "Osiecznica"
},
{
"Name": "Warta Bolesławiecka"
}
]
}
]
}
]
}