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

yrexpert-term

v0.0.7

Published

Terminal mode navigateur pour yrexpert-js...

Downloads

14

Readme

yrexpert-logo.png

Terminal mode navigateur pour yrexpert-js...

npm downloads

Ce dépot contient :

  • un module back-end de Node.js fournisant une interface Web Sockets pour YRexpert.
  • un terminal JavaScript émulant VT-100 qui fonctionne dans la plupart des navigateurs.

Ce dépot est basé sur l'émulateur term.js de Christopher Jeffrey's , avec des modifications apportées par Rob Tweed pour le fonctionnement sous Internet Explorer.

1. Installer Node.js et Npm

Si vous êtes sur un système Linux type Debian, vous pouvez taper :

~$ sudo apt-get install nodejs nodejs-legacy npm

Installation du serveur sur les autres distributions Linux

Installer les dépendances que l'on aura besoin pour l’installation : yrelay/yrexpert-Term ~$ sudo apt-get install curl build-essential openssl libssl-dev

Télécharger la dernière version de Node.js, la version v4.2.4 à ce jour ( http://nodejs.org/download/ ) :

~$ wget http://nodejs.org/dist/latest-v4.x/node-v4.2.4.tar.gz

Extraction de l'archive :

~$ tar xzvf node-v4.2.4.tar.gz

On se positionne dans le dossier :

~$ cd node-v4.2.4/

Configuration des sources :

~$ ./configure

Compilation des sources :

~$ make

Installation de Node.js :

~$ make install

Si vous souhaitez désinstaller Node.js :

~$ make uninstall

2. Installer le module Node.js yrexpert-term et ses dépendences

~$ mkdir ~/test
~$ cd ~/test	
~$ npm install yrexpert-term

Réponder au questions suivantes :

  • Installer yrexpert-term vers le répertoire (/home/hamid/Yrelay/bas/yrexpert-term):
  • Voulez-vous installer des ressources supplémentaires à partir du répertoire /extras ?
  • Si vous êtes nouveau sur yrexpert-term ou voulez créer un environnement de test, entrer Y
  • Si vous êtes un utilisateur expérimenté ou ceci est un environnement de production, entrer N
  • Entrer Y/N:

Lancer le serveur :

~$ cd yrexpert-term
~$ node yrexpert-termStart

3. Démarrage de l'émulateur de terminal

http://localhost:8081/yrelay/yrexpert-term/index.html

Remarque : spécifier l'adresse appropriée/IP et le port tel que configuré dans le fichier de démarrage yrexpert-termStart.js.

4. Fonctionnement de yrexpert-term

4.1. Coté Serveur :

var term = require('yrexpert-term');

term.start({
...

4.2. Coté Client :

<script src="/socket.io/socket.io.js"></script>
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="index.js"></script>
<script>
;(function() {
  $(document).ready(function() {
    var socket = io.connect();
    socket.on('connect', function() {
      console.log("connected");
      var term = new Terminal({
	cols: 80,
	rows: 24,
	useStyle: true,
	screenKeys: true
      });

      term.on('data', function(data) {
	if (data === '£') data = '#';
	console.log("sending " + JSON.stringify(data));
	socket.emit('data', data);
      });

      term.on('title', function(title) {
	document.title = title;
      });

      term.open(document.body);

      term.write('\x1b[31mBienvenue sur le terminal YRexpert !\x1b[m\r\n');

      socket.on('data', function(data) {
	console.log("received " + JSON.stringify(data));
	term.write(data);
      });

      socket.on('disconnect', function() {
	console.log("socket disconnected");
	term.destroy();
      });
    });
  });
}).call(this);
</script>

5. Comment contribuer ?

  • Dupliquer le dépôt (utiliser Fork)
  • Créer un nouvelle branche (git checkout -b ma-branche)
  • Commit(er) votre proposition d'évolution (git commit -am 'Ajouter mon évolution')
  • Push(er) la branche (git push origin ma-branche)
  • Créer une demande d'évolution (utiliser Pull Requests)

Pour remonter un bug : https://github.com/yrelay/yrexpert-term/issues

6. Liens