lingapp-file
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

lingapp-file

A Mongoose model for file management with S3 integration.

Installation

npm install lingapp-file

Usage

import { File } from 'lingapp-file';

// Create a new file
const file = await File.create({
  size: 1024,
  name: 'example.pdf',
  key: 'path/to/file.pdf',
  url: 'https://example.com/file.pdf'
});

// Find a file
const file = await File.findById(id);

// Delete a file (will also delete from S3 if STORAGE_TYPE is 's3')
await File.deleteOne({ _id: id });

Environment Variables

The following environment variables are required when using S3 storage:

  • STORAGE_TYPE: Set to 's3' to enable S3 integration
  • AWS_REGION: Your AWS region
  • AWS_ACCESS_KEY_ID: Your AWS access key
  • AWS_SECRET_ACCESS_KEY: Your AWS secret key
  • BUCKET_NAME: Your S3 bucket name

License

MIT

Package Sidebar

Install

npm i lingapp-file

Weekly Downloads

185

Version

1.0.1

License

MIT

Unpacked Size

8.7 kB

Total Files

10

Last publish

Collaborators

  • arturoliveira