New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

inkie

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

inkie

The simple, customizable news aggregator.

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

inkie

The simple, customizable news aggregator. (Currently in development.)

Introduction

inkie is (or is going to be) the simple, customizable news aggregator. It's being built with Node.js, React, Babel, and webpack. Contributions are always welcome!

Installation

# Clone inkie.
$ git clone git://github.com/qwamber/inkie.git
Install with NPM
# Install inkie.
$ npm install inkie

Setup

Start the development server

The easiest way to get started with inkie is to run the development build.

  • It uses webpack-dev-middleware to automatically bundle edited files

  • It automatically reloads a web browser when changes are made.

# Change directory.
$ cd inkie

# Run the development server on `localhost:8080`.
$ npm run start-dev
Start the production server

You can also run inkie in production mode.

# Build and run the production server on `localhost:8080`.
$ npm run build && npm start

Project structure

+-- web/ (Web-related files)
|   +-- bin/ (Where `.webpackrc.js` puts bundles and where `web/index.html`
|   |        looks for bundles)
|   +-- src/
|   |   +-- components/ (React components)
|   |   |   +-- PageIndex.jsx (The page React component for `web/index.html`)
|   |   +-- static/ (Static assets)
|   |   +-- renderPageIndex.jsx (Renders `web/src/components/PageIndex.jsx` in
|   |   |                        the DOM in the element with the id `root` and
|   |   |                        is the entry point for webpack)
|   +-- index.html (The index HTML page used by `router.js` and `routerDev.js`)
+-- .babelrc (Babel configuration)
+-- .eslintignore (ESLint-ignored files)
+-- .eslintrc.json (ESLint configuration, primarily using the
|                   `eslint-config-airbnb` module)
+-- .gitignore (git-ignored files)
+-- .webpackrc.js (webpack configuration, often called `webpack.config.js` in
|                  other projects)
+-- package.json (NPM configuration)
+-- README.md (The README)
+-- router.js (The inkie Express.js production router)
+-- routerDev.js (The inkie Express.js development router)
+-- startServer.js (Starts the inkie Express.js production router found in
|                   `router.js`)
+-- startServeDev.js (Starts the inkie Express.js development router found in
|                     `routerDev.js`)

Keywords

FAQs

Package last updated on 18 Aug 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc