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

ptmjs

v1.0.2

Published

personal terminal manipulator for js portability.

Downloads

5

Readme

ptmjs

##TR

#PTMJS Nedir ? ptmjs javascript fonksiyonlarınızı, uçbirim komutları gibi çalıştırmanızı sağlar. bunun için önceden oluşturmanız gereken komut dosyasına ihtiyaç duyar ve böylece fonksiyonlarınızı taşınabilir hale getirir.

#Nasıl Kullanılır ?

  • Js projenizde bulunan fonksiyonlarınızı komut adı belirterek .ptm dosyasına kaydedin.
  • Diğer js projelerinize ptmjs'i dahil edin ve .ptm dosyanızı derleyin.
  • Artık yeni projenizde çalıştırmak istediğiniz fonksiyonları

  R(argv,'commandName');

ile çağırmanız yeterli.

Örnek .ptm Dosyası

ptmjs modülü içindeki src klasöründe bulunan ptmOrnekKomutDosyası.ptm dosyasına bakabilirsiniz.

usage : KomutAdı : işlevi

Temel Kullanım

Adım 1

ptmjs'i projenize dahil edin.

$ npm i ptmjs

Adım 2

projenizde .ptm dosyası oluşturun.

   
[email protected]


// command name: function body
// komut adı : fonksiyon

<ptm> hello:console.log('hello'); </ptm>

<ptm>
log:

const res = argv;
console.log(res);

</ptm>


<ptm>
server:
const express = argv;
const app = express();
const port = 3000;

app.get('/', (req, res) => {
  res.send('Hello World!');
});

app.listen(port, () => {
  console.log(`Example app listening on port ${port}`);
});

Adım 3

PTMJS ile .ptm dosyanızı derleyin. Çalıştırmak istediğiniz fonksiyonu adı ile çağırın.


const {PTM,R} = require('../src/ptm.js')
const path = require("path")
const express = require('express');
PTM(path.join(__dirname+'/../src/ptmOrnekKomutDosyası'));

R('Hi, PTM is running...','log')
R(express,'server')

#Uyarılar

  • .ptm dosyasını dahil ederken dosyanın uzantısını (.ptm) eklemeyin.
  • .ptm dosyasının içine sadece fonksiyon işlevlerini yazın. tekrar 'function foo(){}' yazmayın..
  • argümanlı fonksiyonlarınız için .ptm dosyasında argümana ulaşmak için argv yazın.

##EN

#PTMJS Nedir ? ptmjs allows you to run your javascript functions like terminal commands. for this it needs the script you need to create beforehand. thus making your functions portable.

#How to use ?

  • Save your functions in your js project to the .ptm file by specifying the command name.
  • Include ptmjs in your other js projects and compile your .ptm file.
  • now ,

  R(argv,'commandName');

You can run your commands as above.

##.ptm File Example

You can look at the ptmOrnekKomutDosyası.ptm file in the src folder in the ptmjs module. usage : KomutAdı : işlevi

Basic Usage

Step 1

install ptmjs in your project

$ npm i ptmjs

Adım 2

create your.ptm file.


[email protected]


// command name: function body
// komut adı : fonksiyon

<ptm> hello:console.log('hello'); </ptm>

<ptm>
log:

const res = argv;
console.log(res);

</ptm>


<ptm>
server:
const express = argv;
const app = express();
const port = 3000;

app.get('/', (req, res) => {
  res.send('Hello World!');
});
app.listen(port, () => {
  console.log(`Example app listening on port ${port}`);
});

Step 3

Compile your .ptm file with PTMJS. the function you want to run. call by name.


const {PTM,R} = require('../src/ptm.js')
const path = require("path")
const express = require('express');
PTM(path.join(__dirname+'/../src/ptmOrnekKomutDosyası'));

R('Hi, PTM is running...','log')
R(express,'server')

#Warnings

  • When including the .ptm file, do not include the file's extension (.ptm).
  • Just write the function body inside the .ptm file. Do not type 'function foo(){}' again..
  • to access the argument in the .ptm file for your functions with arguments Type argv.

LICENSE

PTMJS is licensed under MIT