🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@assetval/address

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@assetval/address

AssetVal's internal address model

latest
Source
npmnpm
Version
0.3.6
Version published
Maintainers
2
Created
Source

Address

This is the Veritas Address Schema workspace.

Installation

yarn add @assetval/address

Usage

As a Class (Front End)

import { Address } from '@assetval/address';

const address = new Address();

As Schema (Back End)

import { AddressSchema, Address } from '@assetval/address';
import { Model } from 'mongoose';

export const AddressModel = model<Address>('addresses', AddressSchema);

As Validation (Back End)

import { AddressValidationSchema } from '@assetval/address';
import { z } from 'zod';
import { MagikRoutes } from '../middleware/RouterManager.js';

const ProfileRoute = MagikRoutes.getRouter('/profile');

ProfileRoute.post('/updateAddress', {
  auth: 'ensureAuthenticated',
  validationSchema: z.object({
    body: AddressValidationSchema
  }),
  route: async (req, res): Promise<void> => {
    // Do something
  }
});

License

MIT

Authors

  • Abourass

Contributing

Download the Schema repository and make sure you have the following installed:

  • asdf
  • NodeJS (ASDF)
  • Yarn (Corepack / Node / ASDF)
  • moonrepo
  • git-chglog (ASDF)

Then run the following commands:

yarn install

FAQs

Package last updated on 30 Aug 2024

Did you know?

Socket

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.

Install

Related posts