Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
admin-bro-mikroorm
Advanced tools
This is an unofficial admin-bro adapter which integrates MikroORM into admin-bro.
Note that this is a first release and it's currently tested using only the example setup found in this repository.
If you are having trouble integrating this adapter in your project, please open an issue and try to describe the problem with as many details as possible.
yarn
$ yarn add admin-bro-mikroorm
npm
$ npm i admin-bro-mikroorm
The plugin can be registered using standard AdminBro.registerAdapter
method.
import { Database, Resource } from 'admin-bro-mikroorm';
import AdminBro from 'admin-bro';
import { validate } from 'class-validator';
const setupAdminBro = async () => {
const orm = await MikroORM.init({
entities: [User],
dbName: process.env.DATABASE_NAME,
type: 'postgresql',
clientUrl: process.env.DATABASE_URL,
});
// MikroORM exposes it's entity manager through created ORM instance (`orm.em`) and it's required for
// the adapter to run database queries. The static method `Resource.setORM` extracts required properties from your
// ORM instance.
Resource.setORM(orm);
// If your entities use `class-validator` to validate data, you can inject it's validate method into the resource.
Resource.validate = validate;
AdminBro.registerAdapter({ Database, Resource });
// You can instantiate AdminBro either by specifying all resources separately:
const adminBro = new AdminBro({
resources: [{ resource: User, options: {} }],
});
// Or by passing your ORM instance into `databases` property.
const adminBro = new AdminBro({
databases: [orm],
});
// You should choose to use either `resources` or `databases`
};
An example project can be found in example-app
directory.
Currently only ManyToOne
and OneToOne
relationships are supported due to current AdminBro's core limitations
for adapter integrations. OneToMany
and ManyToMany
relationships can still be achieved through a combination of custom components and hooks.
If you want to set this up locally this is the suggested process:
yarn install
yarn link
Install all dependencies and use previously linked version of admin-bro-mikroorm
.
cd example-app
yarn install
yarn link admin-bro-mikroorm
Optionally you might want to link your local version of admin-bro
package
Make sure you have all the envs set (see ./example-app/example.env
and create an .env
file based on that)
Build the package in watch mode
(in the root folder)
yarn dev
cd example-app
yarn dev
Before you make a PR make sure all tests pass and your code wont causes linter errors. You can do this by running:
yarn lint
yarn test
Make sure you have an .env
file in project's root directory for the test runner to use:
DATABASE_URL=postgres://postgres:@localhost:5433/mikroorm_test
DATABASE_NAME=mikroorm_test
FAQs
MikroORM adapter for AdminBro
We found that admin-bro-mikroorm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.