hexpm alternatives and similar packages
Based on the "Examples and funny stuff" category.
Alternatively, view hexpm alternatives based on common mentions on social networks and blogs.
-
magnetissimo
Web application that indexes all popular torrent sites, and saves it to the local database. -
phoenix-chat-example
A step-by-step example/tutorial for building a Chat app in Phoenix for complete beginners. Covers testing, docs and deployement. Phoenix 1.4. -
phoenix-liveview-counter-tutorial
complete beginners step-by-step tutorial building a real time counter in Phoenix 1.5.3 and LiveView 0.14.1. -
phoenix-ecto-encryption-example
A comprehensive example/tutorial showing people how to use Ecto Types to transparently encrypt/decrypt data in a Phoenix 1.4 app. -
phoenix-todo-list-tutorial
A complete beginners step-by-step tutorial for building a Todo List from scratch in Phoenix 1.5.3. -
stranger
Elixir Phoenix app to chat anonymously with a randomly chosen stranger https://hellostranger.xyz. -
feedx
Add social feed functionality to current applications. Exemplify OTP umbrella app, with 3 apps. Thin phoenix controllers. -
ex_iss
This package is for interfacing with the Open Notify API to information such as the ISS's current location, crew, and when it will pass over a location. -
lolcat
This is the clone of busyloop/lolcat. But it does not support animation and some features of the original.
Get performance insights in less than 4 minutes
Do you think we are missing an alternative of hexpm or a related project?
README
Hexpm
Contributing
To contribute to Hexpm you need to properly set up your development environment.
Also see the client repository: hex. The client uses hexpm
for integration tests, so hexpm
needs to support all versions the client supports. Travis tests ensures that tests are run on all supported versions.
Setup
- Run
mix setup
to install dependencies, create and seed database etc - Run
mix test
- Run
iex -S mix phx.server
and visit http://localhost:4000/
After this succeeds you should be good to go!
See [setup
alias in mix.exs](./mix.exs) and sections below for more information or when you run into issues.
PostgreSQL Modules And Version
PostgreSQL version should be >= 9.4, as Hexpm uses the jsonb
type, that is available from PostgreSQL 9.4 onward.
Hexpm requires the PostgreSQL modules pg_trgm and pgcrypto to be available.
This is located in the "postgresql-contrib" package, however the package name can vary depending on your operating system. If the module is not installed the ecto migrations will fail.
Database
By default, Hexpm connects to a localhost PostgreSQL database hexpm_dev
using the username postgres
with the password postgres
.
Create the database and user 'postgres' if not already done:
CREATE USER postgres;
ALTER USER postgres PASSWORD 'postgres';
CREATE DATABASE hexpm_dev;
GRANT ALL PRIVILEGES ON DATABASE hexpm_dev TO postgres;
ALTER USER postgres WITH SUPERUSER;
-- if you also want to setup the test database
CREATE DATABASE hexpm_test;
GRANT ALL PRIVILEGES ON DATABASE hexpm_test TO postgres;
Now you are fine to run the ecto migrations:
mix ecto.migrate
Sample Data
Using the following command you can seed your local Hexpm instance with some sample data:
mix run priv/repo/seeds.exs
Node Dependencies
For assets compilation we need to install Node dependencies:
cd assets && yarn install
If you don't have yarn installed, cd assets && npm install
will work too.
Running Hexpm
Once the database is set up you can start Hexpm:
# with console
iex -S mix phx.server
# without console
mix phx.server
Hexpm will be available at http://localhost:4000/.
License
Copyright 2015 Six Colors AB
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*Note that all licence references and agreements mentioned in the hexpm README section above
are relevant to that project's source code only.