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

neorm

v0.0.1

Published

[IN VERY EARLY DEVELOPMENT] A Neo4j ORM for Node.js with syntax inspired by Mongoose.

Downloads

5

Readme

Neorm

Nothing to see here yet...

The purpose of this project will be to write a Neo4j ORM for Node.js with syntax inspired by Mongoose.

The guiding principle of the Neorm project will be to assist users in managing the schema of their Neo4j graphs, nothing more. We should not be opinionated about how users chose to utilize Neo4j features. There should be simple, understandable, helper functions which make trivial interactions with the graph easier, but Cypher queries are incredibly powerful and we should embolden users to write and execute them. There is no possible way we could abstract away every use case for every user, so let's not try.

Let me reiterate, in it's current state, Neorm is not even remotely useable as a library or ORM yet. There is no roadmap yet, other than to say this is something I've been thinking about for a while and now I finally need it in order to build another project I'm working on. So hopefully there will be some progress in the near future.

Contributing

If you're interested in contributing to the project, contact me through my github profile, or open an issue in the issue tracker.

Relation to Neo4j-js

A lot has changed in the eight months since I wrote neo4j-js. I have a much better understanding of Neo4j, and how people might want to interact with it than I did back then (I had no prior Neo4j experience). Neo4j itself is nearing version 2.0 and there are a lot of very cool features which are coming with it. The most important of which, from my perspective, is node labels. Labels allow for better schema organization and much better automatic indexing.

Neo4j-js was built around the REST API. All of its features have a nearly one-to-one correlation with a REST endpoint. While that wasn't necessarily the wrong way to design the library at that time, it has made it difficult to incorporate new features (like labels and transactions) into the library without feeling like complete afterthoughts (which is why those features still don't exist in neo4j-js, and probably never will). Neorm will not focus on the REST API at all; instead, it will focus on data models and cypher queries.