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

foreachline

v1.1.0

Published

Do something for each line of a file with JS

Downloads

2

Readme

Online version - http://scriptnull.github.io/foreachline

Install

npm install -g foreachline

Usage

If you are a javascript fan who loves to do all your tasks with javascript , then foreachline is for you.

To use foreachline , you have to install it from npm and use the following command line.

foreachline src.txt logic.js 

or

fel src.txt logic.js res.txt

Use foreachline or just fel .

Arguments

  • src.txt - Source file for data.
  • logic.js - contains logic for mapping the data.
  • res.txt [Optional] - Results will be written to res.txt if specified , else will be written back to src.txt.

What can you do ?

Transform data . Be it a silly to-do list or 50 lines of code , map them the way you want.

Lets say you have the following source file src.txt

Apple
Orange
Banana

All you need to do is writing a JS file to map data on each line to new data.

while creating a JS file , you just need to know one thing . foreachline provides you 2 variables to operate on your data.They are line and lineNumber

Lets say you want to add lines numbers on each line of src.txt Then logic.js would look like

line = lineNumber + "." + line ;

and you will have

1.Apple
2.Orange
3.Banana

If you want to convert them to html list elements

line = "<li>" + line + "</li>" ; 

and you will have

<li>Apple</li>
<li>Orange</li>
<li>Banana</li>

If you want to create JavaScript objects

line = { id : lineNumber , name : line };

and you will have

{"id":1,"name":"Apple"}
{"id":2,"name":"Orange"}
{"id":3,"name":"Banana"}

and I can continue giving examples all night.

Plans

Yeah ! We made it to the web browser , as per the plan. Right now , there is no major plans for foreachline.

Contributing

Please visit the project page to have idea about contibuting towards foreachline.

Whatever you have in your mind , lets discuss. Gitter

License

This tool is licensed under the MIT License.