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

typeorm-fastify-plugin

v3.0.0

Published

An updated fastify-typeorm-plugin for Fastify and Typeorm

Downloads

2,237

Readme

typeorm-fastify-plugin

GitHub Workflow Status NodeJSTypeScript

A Fastify plugin that connects, organizes, and decorates all your database connections to your Fastify server. Uses TypeORM

Install

npm install typeorm-fastify-plugin

Usage

const Fastify = require('fastify');
const dbConn = require('typeorm-fastify-plugin');

const fastify = Fastify();

fastify
	.register(dbConn, {
		host: 'localhost',
		port: 3306,
		type: 'mysql',
		database: 'your_database_name',
		username: 'your_username',
		password: 'your_database_password',
		entities: [Users, Products]
	})
	.ready();

fastify.listen(3000, () => {
	console.log('Listening on port 3000');
});

routes.js

const root = async (fastify, opts) => {
	fastify.get('/', async function (request, reply) {
		const userRepository = fastify.orm.getRepository(Users);
	});
};

Fastify server will be decorated with orm key and available everywhere in your app


You can also pass your connection as connection

Example

const fastify = require('fastify');
const dbConn = require('typeorm-fastify-plugin');
const { DataSource } = require('typeorm');

const connection = new DataSource({
	host: 'localhost',
	port: 3306,
	type: 'mysql',
	database: 'your_database_name',
	username: 'your_username',
	password: 'your_database_password'
});

fastify.register(dbConn, { connection: connection });

Note: You need to install the proper driver as a dependency. For example, if using MySQL, install mysql or mysql2.


With ES6

import Fastify from 'fastify';
import plugin from 'typeorm-fastify-plugin';

const fastify = Fastify();
fastify.register(plugin, {
	/* your config options here */
});

Usage With Multiple Namespaces

Typorm allows you to use multiple DataSource instances across your application globally. It only makes sense that this plugin would enable you to do the same thing. Using a namespace is easy but completely optional.

import Fastify from 'fastify';
import plugin from 'typeorm-fastify-plugin';

const fastify = Fastify();
fastify.register(plugin, {
	namespace: 'postgres1',
	host: 'localhost',
	port: 5432,
	username: 'test',
	password: 'test',
	database: 'test_db',
	type: 'postgres'
});

This is the only way to initialize a "namespaced" instance using this plugin.

The namespace will be available everywhere your fastify server is. For example, to access the namespace declared in the above code: fastify.orm['postgres1'].getRepository()

This is the default behavior of wrapping code in fastify-plugin module;

Logging

You can pass a custom logger or define one of the built-in loggers exposed through TypeORM logging options. If you do not declare a logger and enable Fastify logging, by default a PinoTypeOrm Logger will be used.

import Fastify from 'fastify';
import plugin from 'typeorm-fastify-plugin';

const fastify = Fastify();
fastify.register(plugin, {
	namespace: 'postgres1',
	host: 'localhost',
	port: 5432,
	username: 'test',
	password: 'test',
	database: 'test_db',
	type: 'postgres',
	logger: new YourCustomLoggerHere() || 'simple-console' || 'whatever'
});