npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

posti

v3.5.1

Published

Posti Basic Address auto-updater

Downloads

53

Readme

POSTI

pipeline status coverage report latest version last commit total downloads dependencies

Description

posti is a tool to automagically download latest basic address data from Finnish post - Posti, to parse the files and insert the contents into database. Check also posti-graphql.

Changelog

Check changes here.

Posti

Postal Code Services - Homepage:

Postal Code Services – Service Description and Terms Of Use:

Postal Code Services – Frequently Asked Questions:

There are 3 different files:

  • BAF (Basic Address File) - Updated every saturday at 13:00 (1:00 PM) GMT+0
  • PCF (Postal Code File) - Updated every day at 13:00 (1:00 PM) GMT+0
  • POM (Postal Code Changes) - Updated on 2nd day of each month at 13:00 (1:00 PM) GMT+0

This tool downloads the latest files and processes only the ones that have been updated, so you can setup the automation to be run as often as you like, but I would suggest you not to run this more than once per day.

The files above can be found here:

  • https://www.posti.fi/webpcode/

TIPS

While executing this tool, it will try to automatically find the config file from these paths, in this order:

  • <path to your project>/posti.config.js
  • <path to your home dir>/.posti/config.js

You can also specify a custom path for the config file, with either:

posti --config=/path/to/config

..or:

config=/path/to/config posti

You can also use ~ in the path, which will be converted as your home directory path automatically, so e.g.: config=~/.posti.js is going to be converted into e.g.: config=/home/user/.posti.js.

This tool uses Sequelize, therefore this tool supports/should support:

  • MySQL / MariaDB
  • Postgres
  • SQLite
  • Microsoft SQL Server

I've only tested the usage with MariaDB, so please, if you try any other of the supported databases, let me know if you're having issues and/or if its working, so that I can update this readme.

Force update

You can bypass the checks and force this tool to process each of the files, by force=true posti.

Installation as a dependency for your project

  1. Install the dependency

    yarn add posti

    or:

    npm install posti
  2. Create a posti.config.js file in your project root with the contents of posti.config.example.js

  3. Create a npm script in your package.json file:

    "scripts": {
      "update-posti": "posti"
    }
  4. Run the script:

    yarn update-posti

    or:

    npm run update-posti

Installation as a global command

  1. Install the package

    yarn global add posti

    or:

    npm install -g posti
  2. Create a .posti/config.js file in your home dir with the contents of posti.config.example.js

  3. Run the script:

    posti

Links

Disclaimer

I am not in any way affiliated with nor do I represent anything from Finnish post - Posti.

License

MIT License

Copyright (c) 2018 Kimmo Saari

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.