Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
$ 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.
As of version 0.8.6, luvi
no longer has a proxying utility.
$ 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 (must be root to use ports below 1024)
$ luvi -r /path/to/www/root # 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:
var 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
.FAQs
Simple dev server with Markdown support, CLI, and API.
The npm package luvi receives a total of 0 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.
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.