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

@metafoks/cli

v1.0.5

Published

Metafoks application command line interface

Downloads

6

Readme

Metafoks Application

[Русский язык | 中文语言]

Inspired by Spring, the Metafoks Application implements reverse dependency injection.

Installation

Install the Metafoks CLI globally:

npm i -g @metafoks/cli

Create a project directory, for example, project:

mkdir project

Navigate to the project directory:

cd project

Run the project initialization script:

metafoks init

Project Architecture

  • /config - directory with configurations
  • /config/config.json - application configuration file
  • /src - main project files
  • /src/index.ts - entry point of the application
  • /package.json - main module file
  • /esbuild.config.js - project build configuration
  • /tsconfig.json - main TypeScript configuration file

How to Use (Guide)

First Service

In the project files directory, there is an entry point file index.ts. Let's enhance it:

// file: index.ts

import { MetafoksApplication, createLogger } from "@metafoks/app";
import MyService from './my.service.ts';

@MetafoksApplication()
class Application {
    private logger = createLogger(Application);

    constructor(private deps: { config: any, myService: MyService }) {}

    start() {
        // Start point of your application
        this.logger.info(this.deps.config);
        this.deps.myService.startService();
    }
}

Now let's create our first service. Note that you need to use the default keyword when exporting the module.

// file: my.service.ts

export default class MyService {
    private logger = createLogger(MyService);

    constructor(private deps: { config: any }) {}

    startService() {
        this.logger.info("Service has been started!");
    }
}

Components

If you want to create a component that is not a service, use files with the *.component.ts extension. The component should be exported as default.

// file: db.component.ts

export default class DbComponent {
}

But what if you want to register your component using a shorter name? There's a solution!

// file: db.component.ts

import { Component } from "@mtafoks/app";

@Component("db")
export default class DbComponent {
}

Now you can use the name db.

// file: index.ts

import { MetafoksApplication, createLogger } from "@metafoks/app";
import DbComponent from './db.component.ts';

@MetafoksApplication()
class Application {
    private logger = createLogger(Application);

    constructor(private deps: { config: any, db: DbComponent }) {}

    async start() {
        this.logger.info(this.deps.config);
        await this.deps.db.connect();
    }
}

Loaders

The Metafoks application has loaders - functions that run once and live as singletons, but they also have context. Let's create a telegraf.loader.ts file. Note that the loader always has the *.loader.ts format.

// file: telegraf.loader.ts

export default function (deps: { config: any }) {
    return new Telegraf(config.token);
}

Now we can also create a loader for Telegram.

// file: telegram.loader.ts

export default function (deps: { telegraf: Telegraf }) {
    return telegraf.telegram;
}

Great! To get loader results from the context, you need to use the loader file name without .loader.

// file: bot.component.ts

import { Component } from "@metafoks/app";

@Component("bot")
export default class BotComponent {
    public constructor(private deps: { telegraf: Telegraf, telegram: Telegram, config: any }) {}
}

Extensions

import { MetafoksContext } from "@metafoks/app";

MetafoksContext.getContext()

getContext() returns the application context.

Simple example:

// module: @custom/tg
// file: index.ts

import { MetafoksContext } from "@metafoks/app";

export class TelegramBot {
    public constructor(private deps: {}) {}

    startBot() {}
}

export function telegramBotExtension(context: MetafoksContext) {
    context.addClass("telegramBot", TelegramBot);
}
// file: index.ts

// ...imports

@MetafoksApplication({
    with: [telegramBotExtension]
})
class Application {
    private logger = createLogger(Application);

    constructor(private deps: { config: any, telegramBot: TelegramBot }) {}

    start() {
        this.logger.info(this.deps.config);
        this.deps.telegramBot.startBot();
    }
}

Component Scanning

In the built-in config config/config.json, there are component scanning rules:

{
  "metafoks": {
    "scanner": {
      "service": "./src/**/*.service.ts",
      "loader": "./src/**/*.loader.ts",
      "component": "./src/**/*.component.ts"
    }
  }
}

Logging

In the built-in config config/config.json, there are some settings for logging:

{
  "metafoks": {
    "logger": {
      "level": {
        "app": "INFO",
        "system": "INFO"
      }
    }
  }
}
  • system - system logs of the application
  • app - logs created by the createLogger function

Supported log types: trace, debug, info, warn, error.