Code Monkey home page Code Monkey logo

node-own-package's Introduction

Create Your Own Package Library

Berikut ini adalah tutorial step by step panduan cara membuat Package Library untuk Nodejs Application menggunakan TypeScript dan JavaScript, semoga dengan adanya tutorial ini anda dapat membuat Package Library anda sendiri, yang nantinya bisa anda gunakan sendiri atau anda bisa bagikan kepada orang lain.

Table Of Content

Different Library Packages

  • Nodejs JavaScript Package Library jika anda membuat package library menggunakan Javascript, package library tersebut hanya bisa di jalankan di module commonjs saja tidak bisa di jalankan menggunakan module esm module
const { addition } = require('node-math')
const output = addition(8, 2)
console.log(output)
  • Nodejs TypeScript Package Library jika anda membuat package library menggunakan Typescript, package library tersebut bisa di jalankan di module commonjs dan esm module
const { addition } = require('node-math-ts')
const output = addition(8, 2)
console.log(output)
import { addition } from 'node-math-ts'
const output = addition(8, 2)
console.log(output)

Challenge From Me

Silahkan pamerkan package library anda setelah mengikuti tutorial yang saya berikan ini, untuk menginspirasi teman - teman yang lainnya, silahkan clone repository berikut ini, kemudian taruh package library yang sudah anda buat di modules folder, sesuai dengan type package library yang telah anda buat, untuk readmenya silahkan ikuti contoh package library yang sudah ada sebelumnya.

Author

node-own-package's People

Contributors

restuwahyu13 avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

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.