npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pl-node

v1.1.1

Published

Package for working with Oracle PL/SQL packages

Downloads

7

Readme

pl-node: Node+PL/SQL tool

This package is a useful tool for working with PL/SQL packages.

It provides a command line interface you can use on your working directory for building, compiling and running tests on your PL/SQL packages.

Installation

You can install the package via npm:

npm i -g pl-node

On your local machine.

Getting started

First of all you can create the project scaffolding with:

pl --init

This will create the folders and files you need to get started.

  • Packages/ working dir for your packages
  • src/ suggested space for your own node source code
  • tests/ suggested space for your tests
  • .env configurations should go in this file (more on this file later in this document)

Then, you should place your PL/SQL packages inside the Packages folder.

In the current version, you can place one or more packages directly into the folder and then simply run the split command. This will split the packages and create the structure needed for working with pl-node.

For example:

If you want to work with a package named MY_PACKAGE.sql, all you have to do is place it inside the Packages folder and run the split command.

Packages/
└── MY_PACKAGE.sql

Your Packages folder will look like this:

Packages/
└── MY_PACKAGE.sql
└── MY_PACKAGE/
    └── MY_PACKAGE.sql
    └── MY_PACKAGE_BODY.sql

Note: You will only need to do this once for every package you add to your project.

Ok ! Now that we have our package (or packages) inside the project dir we can start coding.

Split command

pl --split

This command will scan the Packages folder for your new Packages and split them into spec/body. It will create a new folder inside the Packages dir. It's a handy function for when you just added a package to the folder and don't want to split it manually.

You can send a package name as extra argument so you can choose which package will be split:

pl --split MY_PACKAGE

Otherwise, all found packages will be splitted.

Build command

pl --build

This command will scan the Packages folder for your Packages and build them. The build process consists of merging head and body into one file with ANSI/ASCII encoding for better compatibility with Oracle.

You can send a package name as extra argument so you can choose which package will be built:

pl --build MY_PACKAGE

Otherwise, all packages will be built.

Clean command

pl --clean

This command will scan the Packages folder for your Packages and clean (delete) all builded packages.

It will not delete your source code (package spec and body).

You can send a package name as extra argument so you can choose which package will be cleaned:

pl --clean MY_PACKAGE

Otherwise, all packages will be cleaned.

Compile command

pl --compile

This command will scan the Packages folder for your Packages and compile them on Oracle, on the schema of the user specified in the environment variables.

You can send a package name as extra argument so you can choose which package will be compiled:

pl --compile MY_PACKAGE

Otherwise, all packages will be compiled.

Note: the compilation process uses the source files, not the builded package. It compiles the spec first, then the body for each package. The builded package is useful when you need to compile it yourself or store it in another VCS, server, etc.

The .env file

This file contains the environment variables required to run certain commands. This is the configuration you'll get by default:

ORACLE_USER=''
PASSWORD=''
CONNECTSTRING=''
PACKAGE_ENCODING='utf-8'

The PACKAGE_ENCODING should reflect the original encoding of your packages, for pl-node to read and convert into ASCII.

The output encoding will always be ASCII.

The ORACLE_USER, PASSWORD, and CONNECTSTRING variables are used to instantiate a connection with Oracle.