npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dgraph-init

v0.0.2

Published

CLI tool for setting up a Dgraph Dev instance.

Downloads

2

Readme

Dgraph-Init

CLI tool for setting up dev instance of dgraph database

dgraph-init

To create a db project using dgraph-init, run any of the following command and answer the command prompt questions:

$ npx dgraph-init

AuthToken

you can find your defualt AuthToken inside the .env fie named DEV_DGRAPH_GRAPHQL_KEY

Endpoints

  • GraphQl - localhost:8080/graphql
  • lambda - localhost:8686/graphql-worker
  • admin - localhost:8080/admin
  • ratelUi -localhost:8000

Prerequisites

  • Make sure you have docker and docker-compose installed.

You can use npm db to manage your docker containers related to your database.

db is just a sorthand for docker-compose -f ./devCluster.yml --env-file .env so you can use it as docker-compose.

  • db up spins up containers alpha,zero,lambda,ratel as described in devCluster.yml

  • db stop stops all the container

  • db down deletes all container

  • db down -v deletes all container along with all volumes

  1. Paste your schema inside schema/schema.gql .

  2. Run db-updateSchema to add mew schema to db ` .

  • NOTE: If you run db-updateSchema without adding your schema it will use defualt schema ,you can change it by repeating the steps mentioned before.
  1. You can write your lambda code in typescript inside of lambda/lambdas.ts

  2. Compile your into javascript by runningdb-lambdaBuild

  3. when you restart your server using db down and then db up your new lambda will used

  1. Write admin query or mutation inside of admin/oprations dirictiory, in a .gql or .graphql file, Make sure you have named the query in the file like this.
mutation updateGQLSchema($sch: String!) {
  updateGQLSchema(input: { set: { schema: $sch } }) {
    gqlSchema {
      schema
      generatedSchema
    }
  }
}
  1. Make sure that your admin endpoint is live

  2. Run gen-gql to genrate a typesafe sdk that contains all your queries and mutaions inside admin/oprations dirictiory

  3. you can import the sdk from admin/scripts/generatedTyps.ts

  4. import graphqlDgraphAdminRequestClient which is a graphql-request Clint for admin endpoint, AuthToken is already attached to header when using graphqlDgraphAdminRequestClient

You can use the sdk like this :

import { graphqlDgraphAdminRequestClient } from '../GQLDgraphAdminClient';
import { getSdk } from '`admin/scripts/generatedTyps';

const script =async () => {
 const schema:string=`
 type User {
   id: ID
   name: String
   email: String @search(by: [hash])
   emailVerified: DateTime
   image: String
 }
 `
 try {
   const res = await getSdk(graphqlDgraphAdminRequestClient).updateGQLSchema({ sch: schema });
   console.log('generatedSchema',res.updateGQLSchema);
 } catch (error) {
   console.error(error);
 }

}
script()

Contributing

Feel free to contribute to the dgraph-init by creating a PR

License

Dgraph-init is licensed under the MIT License.