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

@rebase-team/lib-aluno-upe

Package Overview
Dependencies
Maintainers
3
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rebase-team/lib-aluno-upe

Biblioteca Aluno UPE (Driver) Essa biblioteca foi feita para conectar com o endpoint HTTPS do aplicativo Aluno UPE.

  • 5.9.38
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
3
Weekly downloads
 
Created
Source

Biblioteca Aluno UPE (Driver)

Essa biblioteca foi feita para conectar com o endpoint HTTPS do aplicativo Aluno UPE.

Para utilizá-la você precisa de uma aplicação Angular e utilizar o comando descrito na seção abaixo.

Instalação

ionic cordova plugin add cordova-plugin-advanced-http
npm install @ionic-native/http
npm install @rebase-team/lib-aluno-upe

Exemplos de uso

> APPMODULE.TS

import { HTTP } from "@ionic-native/http/ngx";
import { AppComponent } from "./app.component";
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { WebRequestsService } from "@rebase-team/lib-aluno-upe";
import { IonicModule } from "@ionic/angular";

@NgModule({
  declarations: [],
  imports: [
    BrowserModule,
    IonicModule.forRoot()
  ],
  providers: [
    HTTP,
    WebRequestsService
  ],
  bootstrap: [AppComponent],
  exports: []
})
export class AppModule { }

> HOME.PAGE.TS

import { WebSettingsService, WebResponses, WebRequestsService } from "@rebase-team/lib-aluno-upe";

@Component({
  selector: "app-home",
  templateUrl: "home.page.html",
  styleUrls: ["home.page.scss"],
})
export class HomePage implements OnInit {

  constructor(
    private alunoApiSettings: WebSettingsService,
    private alunoApi: WebRequestsService
  ) {
    this.alunoApiSettings.setDebugModeState(true);
    this.alunoApiSettings.setAppVersion('5.1.43');
  }

}

Metadados

Muryllo Pimenta de Oliveira – muryllo.pimenta@upe.br

Distribuído sobre a licença MIT. Veja LICENSE para mais informações.

Contribuição

  1. Fork it (https://github.com/MurylloEx/Aluno-UPE-Service/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request

FAQs

Package last updated on 28 Dec 2020

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