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.
@nisyaban/stellar
Advanced tools
Stellar - Fast database snapshot and restore tool for development. =======
Stellar allows you to quickly restore database when you are e.g. writing database migrations, switching branches or messing with SQL. PostgreSQL and MySQL (partially) are supported.
Stellar is fast. It can restore a database ~140 times faster than using the usual pg_dump & pg_restore.
Stellar works by storing copies of the database in the RDBMS (named as stellar_xxx_master and stellar_xxxx_slave). When restoring the database, Stellar simply renames the database making it lot faster than the usual SQL dump. However, Stellar uses lots of storage space so you probably don't want to make too many snapshots or you will eventually run out of storage space.
Warning: Please don't use Stellar if you can't afford data loss. It's great for developing but not meant for production.
You can install Stellar with pip
.
$ pip install stellar
After that, you should go to your project folder and initialize Stellar settings. Stellar initialization wizard will help you with that.
$ stellar init
Stellar settings are saved as 'stellar.yaml' so you probably want to add that to your .gitignore
.
$ echo stellar.yaml >> .gitignore
Done! :dancers:
$ stellar snapshot SNAPSHOT_NAME
$ stellar restore SNAPSHOT_NAME
sqlalchemy.exc.OperationalError: (OperationalError) (1044, u"Access denied for user 'my_db_username'@'localhost' to database 'stellar_data'") "CREATE DATABASE stellar_data CHARACTER SET = 'utf8'" ()
Make sure you have the rights to create new databases. See Issue 10 for discussion
If you are using PostreSQL, make sure you have a database that is named the same as the unix username. You can test this by running just psql
. (See issue #44 for details)
FAQs
Stellar - Fast database snapshot and restore tool for development. =======
The npm package @nisyaban/stellar receives a total of 0 weekly downloads. As such, @nisyaban/stellar popularity was classified as not popular.
We found that @nisyaban/stellar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.