Coder Social home page Coder Social logo

gulp-loopback-typescript's Introduction

gulp-loopback-typescript

Typescript definition file generator plugin for gulp.

to install gulp-loopback-typescript

npm install --save-dev gulp-loopback-typescript

to use gulp-loopback-typescript

import { loopbackTypescript } from "gulp-loopback-typescript";

// in ES5
var loopbackTypescript = require("gulp-loopback-typescript");

gulp.task("loopbackTypescript", () =>
    return gulp.src("common/models/*json")
              .pipe(loopbackTypescript({
                // dest: "node_modules/@types/loopback",
                // modelDir: "src/typescript/common/models"
              }));
);

Plugin updates @types/loopback/index.d.ts file with the model definition data of each model exists in modelDir option.

Note: If typings definition file of loopback exists that file will be updated, otherwise plugin copy will be replaced.

Known bugs:

  • Properties with "type" name causes problem (ie. { "type": { "type": "string" }})

Todo:

  • model methods
  • relations
  • handling default values

gulp-loopback-typescript's People

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

gulp-loopback-typescript's Issues

"type" as name is treated as a "type"

When using "type" as a name in format of "type": "String", it is not treated as a sub object. Checking of existance of "type", should handle "type": { "type": "String" } for correct behaviour.

Nested objects do not generate interfaces

When objects are nested down, sub object interfaces are not created. A definition like


"name": {
   "subName": {
            "foo": "bar"
   }
}

Is only creating IName interface, not ISubName interface.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.