New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@laboratoria/sdk-js

Package Overview
Dependencies
Maintainers
0
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@laboratoria/sdk-js

Laboratoria JavaScript (browser) SDK

  • 8.1.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
20
decreased by-37.5%
Maintainers
0
Weekly downloads
 
Created
Source

Laboratoria JavaScript (browser) SDK

Node.js CI

:warning: This tool is still in draft stage and is likely to change without notice.

Installation

npm i --save @laboratoria/sdk-js

Usage

import { createApp } from '@laboratoria/sdk-js';

const app = createApp();

With options:

const app = createApp({
  firebaseApiKey: '',
  firebaseProject: '',
  coreApiUrl: '',
});

API

Auth

app.auth.onChange(({ authUser, user }) => {
  // `authUser` is the Firebase Auth user
  // `user` is the user profile stored in Laboratoria Core
});

app.auth.signIn(email, password);
app.auth.signOut();

Models

The app object exposes data models used to access data. Each model represents a type of object, which is stored in a database table.

All models have the following methods and properties.

CRUD methods
  • create
  • delete
  • findById
  • findMany
  • update
  • upsert
Other methods
  • parse
  • stats
  • validate
  • validateAttr
Properties
  • relations
  • schema

Model Schema

Each model has a schema (model.schema) that describes the shape of the data, what properties (columns) it has, what data types these columns are, whether they are required or not, etc.

The model.schema is an object with the following properties:

  • inputProps: An array listing properties to be taken into account when building input UI or sending data (via model.create, model.update, etc).
  • primaryKey: Primary key in the underlying table.
  • properties: An object with the model properties. Each property is described by an object having the following keys:
    • type: It can be: boolean, integer, string, date o una referncia a un modelo, en cuyo caso el string será el nombre del modelo de prisma.
    • default
    • enum
    • format: date-time
    • $ref
    • anyOf
    • items
    • inputType
    • isRequired
    • isScalar
    • isRef
  • type: The schema for the whole model will always be of type object.

Users

app.user.findMany({
  where: { name: { contains: 'foo' } },
  include: { students: true },
  take: 10,
  skip: 0,
});

app.user.findById('some-firebase-uid', {
  include: { gigs: true },
});

app.user.update({
  where: { uid: 'some-firebase-uid' },
  data: {
    name: 'OMG',
  },
});

app.user.delete('some-firebase-uid');

app.user.create({
  data: {
    name: 'OMG',
    email: 'omg@omg.omg',
    password: 'secret',
  },
});

Cohorts

app.cohort.findMany({
  where: {
    end: { gt: new Date() },
    stage: { name: 'bootcamp' },
  },
  include: {
    program: true,
    stage: true,
    students: true,
    dropouts: true,
  },
})

Students

WIP

Dropouts

WIP

Projects

app.project.findMany();

app.project.findMany({ tag: 'v6.5.0' });

app.project.findMany({
  track: 'web-dev',
});

app.project.findById('cipher');

app.project.findById('cipher', { tag: 'v6.5.0' });

Topics

app.topic.findMany();

app.topic.findMany({ tag: 'v6.5.0' });

app.topic.findMany({
  track: 'web-dev',
});

app.topic.findById('javascript');

app.topic.findById('javascript', { tag: 'v6.5.0' });

Learning Objectives

app.learningObjective.findMany();

app.learningObjective.findMany({ tag: 'v6.5.0' });

FAQs

Package last updated on 26 Jun 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc