Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
$ cd /path/to/your/project
$ luvi
luvi listening on 4444
By default, luvi
acts as a static server, serving the files in cwd
.
On launch, luvi
will open a tab in your default browser pointing to your
defined root.
Originally forked from freddie.
Why? Because freddie
did some things that I really liked, but also did a lot of
things that I really don't need, and doesn't do some things that I really do
want.
Why 4444
? Because I'm OCD, and I really like the number 4.
luvi
no longer has a proxying utility. If you need that, please use
freddie instead.src/util
is now src/lib
.src/
is now project root (src/lib
is now /lib
)package.json
is fixed so luvi
works as a module again. Sorry about that!npm rm -g luvi
and then npm i -g luvi
to upgrade!$ npm i -g luvi
$ luvi [server, ...] [options]
luvi
looks inside cwd
for a .luvi.json
config file.
If there is no config file, the default static server is launched.
$ luvi foo bar
foo listening on port 4444
bar listening on port 8888
List of named servers to launch. Only names matching the ones in config file will be launched.
Command-line arguments take priority over config files and defaults.
In a path with a .luvi.json
file, running luvi
will follow the options in
the file, unless any options are passed; if there are multiple servers in the
.luvi.json
file, every server's options will be overridden. Project root is
cwd
by default.
$ luvi # launches the default server
$ luvi foo bar # starts luvi servers `foo` & `bar`
$ luvi -p 1337 # serves from specified port (for < 1024, must be root)
$ luvi -r /path # serves from the specified directory
$ luvi -v # display's luvi's version
$ luvi -h # shows a version of this help dialog
To configure a single server: {"root":"public","port":9090}
.
The object will be passed directly to luvi
.
For multiple servers, simply use an array of single-server configs.
Use the name
option to keep track of servers in logs.
[{
"name": "drafts",
"root": "src",
"port": 1337
},{
"name": "testing",
"root": "build"
},{
"name": "todo",
"root": "doc",
"port": 6565,
"notFound": "/var/www/404.html"
}]
You can pass an object to luvi()
for custom settings; otherwise, these
defaults are applied:
const luvi = require('luvi')
luvi({
name : 'luvi'
, root : process.cwd()
, port : 4444
})
This is exactly the same as just calling luvi()
, with no config object.
These defaults are merged with whatever you pass, so if, for example, you only
pass in a custom server name, luvi
will still run on port 4444 and use cwd
as the root to serve.
Multiple servers can be launched from the same script, with different configs,
by calling luvi()
again with different options.
root: '/path/to/document/root'
index.html
. Can be absolute or relative.process.cwd()
port: 3000
luvi
will look for a free port.4444
.name: 'foo'
luvi
.onListen: function(name, port){console.log(name, 'is listening on', port)}
luvi
starts listening.console.log()
(as above).notFound
: '/path/to/404.html'
undefined
.Please do, if you'd like! The one thing I'd really like to get going is live reloading, but any issue reports/fixes are welcome, and feature requests can definitely be discussed.
License: WTFPL
FAQs
Simple dev server with Markdown support, CLI, and API.
The npm package luvi receives a total of 59 weekly downloads. As such, luvi popularity was classified as not popular.
We found that luvi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.