Trending Projects is available as a weekly newsletter please sign up at Stargazing.dev to ensure you never miss an issue.
1. PptxGenJS
Create PowerPoint presentations with a powerful, concise JavaScript API.
PptxGenJS
Create JavaScript PowerPoint Presentations
Table of Contents
- Table of Contents
- Introduction
- Features
- Live Demos
- Installation
- Documentation
- Library Ports
- Issues / Suggestions
- Need Help?
- Contributors
- Sponsor Us
- License
Introduction
This library creates Open Office XML (OOXML) Presentations which are compatible with Microsoft PowerPoint, Apple Keynote, and other applications.
Features
Works Everywhere
- Every modern desktop and mobile browser is supported
- Integrates with Node, Angular, React, and Electron
- Compatible with PowerPoint, Keynote, and more
Full Featured
- All major object types are available (charts, shapes, tables, etc.)
- Master Slides for academic/corporate branding
- SVG images, animated gifs, YouTube videos, RTL text, and Asian fonts
Simple and Powerful
- The absolute easiest PowerPoint library to use
- Learn as you code will full typescript definitions included
- β¦
2. antfu/p
Toolkit for managing multiple promises.
DEPRECATED, now it's part of @antfu/utils
@antfu/p
Toolkit for managing multiple promises.
Without
const items = [1, 2, 3, 4, 5]
(await Promise.all(items
.map(async i => {
const v = await multiply(i, 3)
const even = await isEven(v)
return [even, v]
})))
.filter(x => x[0])
.map(x => x[1])
import P from '@antfu/p'
const items = [1, 2, 3, 4, 5]
await P(items)
.map(async i => await multiply(i, 3))
.filter(async i => await isEven(i))
// [6, 12]
import P from '@antfu/p'
const p = P(
β¦3. fx
Command-line tool and terminal JSON viewer
f(x)
Special thanks to:
Warp is a modern, Rust-based terminal with AI built in so you and your team can build great software, faster.
Visit warp.dev to learn more.
Install
brew install fx
Documentation
See full documentation at fx.wtf.
License
4. http-server
A simple zero-configuration command-line HTTP server. It is powerful enough for production usage, but it's simple and hackable enough to be used for testing, local development and learning.
http-party / http-server
a simple zero-configuration command-line http server
http-server: a simple static HTTP server
http-server
is a simple, zero-configuration command-line static HTTP server. It is powerful enough for production usage, but it's simple and hackable enough to be used for testing, local development and learning.
Installation:
Running on-demand:
Using npx
you can run the script without installing it first:
npx http-server [path] [options]
Globally via npm
npm install --global http-server
This will install http-server
globally so that it may be run from the command line anywhere.
Globally via Homebrew
brew install http-server
As a dependency in your npm
package:
npm install http-server
Using Docker
Note: a public image is not provided currently, but you can build one yourself with the provided Dockerfile.
- Create an image
docker build -t my-image
- Run a container
In the example above we're serving the directory
docker run -p 8080:8080 -v "${pwd}:/public" my-image
./
(working directory) If you wanted to serve./test
you'dβ¦
5. color
JavaScript library for immutable color conversion and manipulation with support for CSS color strings.
color
JavaScript library for immutable color conversion and manipulation with support for CSS color strings.
const color = Color('#7743CE').alpha(0.5).lighten(0.5);
console.log(color.hsl().string()); // 'hsla(262, 59%, 81%, 0.5)'
console.log(color.cmyk().round().array()); // [ 16, 25, 0, 8, 0.5 ]
console.log(color.ansi256().object()); // { ansi256: 183, alpha: 0.5 }
Install
$ npm install color
Usage
const Color = require('color');
Constructors
// string constructor
const color = Color('rgb(255, 255, 255)') // { model: 'rgb', color: [ 255, 255, 255 ], valpha: 1 }
const color = Color('hsl(194, 53%, 79%)'
β¦6. perfect-cursors
Perfect interpolation for animated multiplayer cursors.
steveruizok / perfect-cursors
Perfect interpolation for multiplayer cursors.
perfect-cursors
Perfect interpolation for animated multiplayer cursors. Used in tldraw.
π Love this library? Consider becoming a sponsor.
Installation
yarn add perfect-cursors
# or
npm i perfect-cursors
Introduction
You can use this library to smoothly animate a cursor based on limited information.
Above: We are updating the red cursor's position once every 80 milliseconds. The perfect-cursors
library is being used to correctly animate between these positions.
Animating between points
When implementing a multiplayer app, you will most likely be displaying each user's cursor location based on the information you receive from a multiplayer service such as Pusher, Liveblocks.
In a perfect world, these updates would occur "in real time": that is, arriving with zero latency and arriving at the same rate as the user's monitor.
Above: Updating the cursor instantly.
In the real world, however, services often "throttle" their updates to roughly one update every 50-80β¦
7. Passport
Simple, unobtrusive authentication for Node.js. Passport's sole purpose is to authenticate requests, which it does through an extensible set of plugins known as strategies.
jaredhanson / passport
Simple, unobtrusive authentication for Node.js.
Passport
Passport is Express-compatible authentication middleware for Node.js.
Passport's sole purpose is to authenticate requests, which it does through an extensible set of plugins known as strategies. Passport does not mount routes or assume any particular database schema, which maximizes flexibility and allows application-level decisions to be made by the developer. The API is simple: you provide Passport a request to authenticate, and Passport provides hooks for controlling what occurs when authentication succeeds or fails.
Simple Authentication
Make login our problem. Not yours
Auth0 by Okta provides a simple and customizable login page to authenticate your users. You can dynamically add new capabilities to it - including social login, multi-factor authentication, or passkeys - without making changes to your appβs code.
We help protect your app and your users from attacks - defending your application from bot attacks and detecting runtime anomalies based on suspicious IPsβ¦
8. oclif
Framework for building CLIs in Node.js. This framework was built out of the Heroku CLI but generalized to build any custom CLI. It's designed both for single-file CLIs with a few flag options, or for very complex CLIs that have subcommands (like git or heroku).
oclif
CLI
oclif
CLI- π Description
- π Getting Started Tutorial
- π Requirements
- π Migrating from V1
- π Usage
- π Examples
- π¨ Commands
- Command Topics
- π Contributing
- π Related Repositories
- π¦ Learn More
π Description
This is the oclif
CLI for the Open CLI Framework, that supports the development of oclif plugins and CLIs.
See the docs for more information.
π Getting Started Tutorial
The Getting Started tutorial is a step-by-step guide to introduce you to oclif. If you have not developed anything in a command line before, this tutorial is a great place to get started.
See Usage below for an overview of the oclif
CLI.
π Requirements
Currently, Node 18+ is supported. We support the LTS versions of Node. You can add the node package to your CLI to ensure users are running a specific version of Node.
π Migrating from V1
If you have been usingβ¦
9. Meteor
Meteor is an ultra-simple environment for building modern web applications.
Meteor is an ultra-simple environment for building modern web applications.
π Create your applications using modern JavaScript
Benefit from the latest technology updates to rapidly prototype and develop your applications.
β¨ Integrate technologies you already use
Use popular frameworks and tools right out-of-the-box. Focus on building features instead of configuring disparate components yourself.
π» Build apps for any device
Use the same code whether youβre developing for web, iOS, Android, or desktop for a seamless update experience for your users.
π₯ Getting Started
How about trying a tutorial to get started with your favorite technology?
Next, read the documentation and get some examples.
π Quick Start
On your platform, use this line:
> npm install -g meteor
π To create a project:
> meteor create my-app
βοΈ Run it:
cd my-app
meteor
𧱠Developer Resources
Building an application with Meteor?
- Deployβ¦
10. ReactPlayer
A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia and DailyMotion
cookpete / react-player
A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia and DailyMotion
ReactPlayer
A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia, Mixcloud, DailyMotion and Kaltura. Not using React? No problem.
Using Next.js and need to handle video upload/processing? Check out next-video.
β¨ The future of ReactPlayer
Maintenance of ReactPlayer is being taken over by Mux. Mux is a video api for developers. The team at Mux have worked on many highly respected projects and are committed to improving video tooling for developers.
ReactPlayer will remain open source, but with a higher rate of fixes and releases over time. Thanks to everyone in the community for your ongoing support.
Usage
npm install react-player # or yarn add react-player
import React from 'react'
import ReactPlayer from 'react-player'
// Render a YouTube video player
<ReactPlayer url='https://www.youtube.com/watch?v=LXb3EKWsInQ' />
By default, ReactPlayer supports many different types of url
. Ifβ¦
Stargazing π
Top risers over last 7 daysπ
- 30 Days Of JavaScript +1,929 stars
- Iconoir +885 stars
- Tauri +842 stars
- faker.js +812 stars
- Awesome +710 stars
Top growth(%) over last 7 daysπ
- faker.js +178%
- Iconoir +93%
- Amplify UI +36%
- Fuite +27%
- 30 Days Of JavaScript +16%
Top risers over last 30 daysπ
- Awesome +4,538 stars
- Tabby +4,249 stars
- Awesome Self Hosted +3,583 stars
- Free Programming Books +3,387 stars
- JavaScript Algorithms +2,956 stars
Top growth(%) over last 30 daysπ
- Pico +202%
- Rakkas +144%
- md-block +107%
- Iconoir +98%
- Basic Computer Games +92%
For all for the latest rankings please checkout Stargazing.dev
Trending Projects is available as a weekly newsletter please sign up at Stargazing.dev to ensure you never miss an issue.
If you enjoyed this article you can follow me on Twitter where I regularly post about HTML, CSS and JavaScript.
Top comments (5)
Just crazy how much really good projects @antfu creates and maintains.
Really appreciate his work!
Just browse through his projects and you will find a few gems.
Also thx to all other maintainers of OSS which mainly use there free time to provide great software.
I love this lists, thanks for making that every week, it helps me to keep update with what's is going on in the industry.
Thank you
This series is amazing
codedmails.com is also an awesome resource for email templates.