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

@kiwicom/overlord

v14.1.10

Published

A layer on top of Next.js for building customer-facing Kiwi.com apps

Downloads

173

Readme

Overlord

👑 One package to rule them all,

🔎 One package to find them,

✈️ One package to bring them all,

🎉 and in the awesomeness bind them.


Overlord:

  • is a Kiwi.com tailored layer on top of Next.js,
  • will power customer-facing FE apps,
  • handles setting up tooling and deps management.

► developers take care of developing features.

Repository: https://gitlab.skypicker.com/frontend/core/-/tree/master/packages/overlord
Documentation: Coming soon.

Installation

To add @kiwicom/overlord to your project, run

yarn add @kiwicom/overlord
# or
npm i --save @kiwicom/overlord

You can also bootstrap a new frontend application with

npx @kiwicom/overlord init <destination-folder>

overlord CLI

Usage

$ npm install -g @kiwicom/overlord
$ overlord COMMAND
running command...
$ overlord (-v|--version|version)
@kiwicom/overlord/14.1.10 linux-x64 node-v16.17.0
$ overlord --help [COMMAND]
USAGE
  $ overlord COMMAND
...

Commands

overlord copy-smartfaq-keys

[deprecated] Use 'overlord copy-translation-keys' instead.

USAGE
  $ overlord copy-smartfaq-keys

DESCRIPTION
  A helper to add SmartFAQ's translation keys to Nitro-generated data/tkeys.json file. It should run before 'yarn nitro 
  translations'.

overlord copy-translation-keys

A helper to add translation keys from Overlord and SmartFAQ to Nitro-generated data/tkeys.json file. It should run before 'yarn nitro translations'.

USAGE
  $ overlord copy-translation-keys

overlord help [COMMAND]

Display help for overlord.

USAGE
  $ overlord help [COMMAND]

ARGUMENTS
  COMMAND  Command to show help for.

OPTIONS
  -n, --nested-commands  Include all nested commands in the output.

See code: @oclif/plugin-help

overlord init [DESTINATION]

Initialize a new Overlord-powered FE app

USAGE
  $ overlord init [DESTINATION]

OPTIONS
  --name=name

EXAMPLES
  $ overlord init <destination>
  $ overlord init <destination> --name @kiwicom/fe-app

overlord static-scripts [DESTINATION]

Generate static data scripts

USAGE
  $ overlord static-scripts [DESTINATION]

ARGUMENTS
  DESTINATION  [default: public/data/scripts] output files destination

OPTIONS
  --countries=(light|full)  [default: light] The generated file for countries has two versions: a light version (with
                            currencies only) and another with the full version

  --data=data               [default: data] data folder with static data fetched by Nitro, required by Nitro's load
                            function

EXAMPLE
  $ overlord static-scripts <destination>

overlord test

Run test suite in your project

USAGE
  $ overlord test

DESCRIPTION
  This is just a convenience wrapper for Jest. Out of the box, it will use some default configuration which should cover
   most of the needs for Kiwi.com frontends.
    Should you need to tweak the configuration, you could create a 'jest.config.js' file, with the following contents to
   add a file to 'setupFilesAfterEnv' for example:
    ```
    const defaultConfig = require('@kiwicom/overlord/bin/config/jest').default;

    module.exports = {
     ...defaultConfig,
     setupFilesAfterEnv: [...defaultConfig.setupFilesAfterEnv, 'your-file'],
    }
    ```

EXAMPLES
  $ overlord test
  $ overlord test --coverage
  $ overlord test --watch
  $ overlord test [--flags accepted by jest]