Les Partages de Memiks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
14 results tagged NodeJS  ✕
Shadoware.Org – Woodstock Backup v1.0.0 https://shadoware.org/post/woodstock#woodstock
Sun Sep 20 21:09:58 2020 archive.org
QRCode

Bonjour à tous, Un projet s

backup sauvegarde btrfs rsync javascript nodejs
Home | MiniSearch https://lucaong.github.io/minisearch/
Tue Feb 12 22:00:16 2019 archive.org
QRCode
thumbnail

MiniSearch is a tiny but powerful in-memory fulltext search engine for JavaScript. It is respectful of resources, and it can comfortably run both in Node and in the browser.

#Use case

MiniSearch addresses use cases where full-text search features are needed (e.g. prefix search, fuzzy search, boosting of fields), but the data to be indexed can fit locally in the process memory. While you may not index the whole Wikipedia with it, there are surprisingly many use cases that are served well by MiniSearch. By storing the index in local memory, MiniSearch can work offline, and can process queries quickly, without network latency.

A prominent use-case is search-as-you-type features in web and mobile applications, where keeping the index on the client-side enables fast and reactive UI, removing the need to make requests to a search server.

search engine javascript nodejs browser
node.js - How/why does npm recommend not running as root? - Stack Overflow https://stackoverflow.com/questions/4938592/how-why-does-npm-recommend-not-running-as-root
Thu Apr 5 22:05:31 2018 archive.org
QRCode
thumbnail

The simple answer is web servers should never be run as root for well known security reasons, so this goes for npm commands as well.

To start fresh, remove prior Node.js and npm installs as well as these files/directories:

mv ~/.npmrc ~/.npmrc~prior
mv ~/.npm ~/.npm~prior
mv ~/tmp ~/tmp.~prior
mv ~/.npm-init.js ~/.npm-init.js~prior

Solution: Install Node.js (which comes with npm) as NON root (no sudo)

Download Source Code directly from https://nodejs.org/en/download/

Execute the below as yourself (Linux/OS X)

cd node-v8.1.2 # into expanded source dir

export NODE_PARENT=${HOME}/node-v8.1.2 # put this into your ~/.bashrc

Feel free to change above export to whatever location is appropriate

./configure --prefix=${NODE_PARENT}
make -j4 # for dual core ... use -j8 for quad core CPU
make install

which puts the binaries for Node.js and npm as well as its modules repository into $NODE_PARENT, a $USER owned dir which then allows you to issue subsequent npm install xxx commands as yourself.

To reach the binaries for node and npm alter your PATH environment variables in your ~/.bashrc:

export PATH=${NODE_PARENT}/bin:${PATH}
export NODE_PATH=${NODE_PARENT}/lib/node_modules

Then to install packages into that directory (global), as opposed to the current directory (local) always pass in the -g flag (global):

npm install -g someModule

NOTE - at no time are you executing anything npm or node related as root / sudo.

nodejs npm permission root
Mozaik dashboard https://github.com/plouc/mozaik-demo
Wed Jul 15 21:45:28 2015 archive.org
QRCode
thumbnail

Un Dashboard léger en nodejs

a tester.

dashboard sensu github nodejs
Browserify http://browserify.org/
Fri Jan 30 22:22:37 2015 archive.org
QRCode
thumbnail

Faire une appli nodeJS et inclure juste ce qu'il vous faut dans le navigateur ?

c'est ce que propose Browserify.

nodejs browser javascript
Node.js meet WebMatrix | 53 Bytes - by Justin Beckwith http://jbeckwith.com/2012/06/07/node-js-meet-webmatrix-2/
Mon Jul 9 23:52:06 2012 archive.org
QRCode
thumbnail

Hum... a tester, un logiciel qui permet de coder en NodeJS facilement et sous Windows...

Avec le Concours de Microsoft !

microsoft nodejs logiciel code
Felix's Node.js Convincing the boss guide http://nodeguide.com/convincing_the_boss.html
Fri Jun 15 20:38:21 2012 archive.org
QRCode
thumbnail

node js

NodeJS
JSApp.US http://jsapp.us/
Wed Mar 21 18:42:54 2012 archive.org
QRCode
thumbnail

Une plateforme de test en ligne pour les applications NodeJS ;)

pas mal pour tester ses applis.
il faudra que j'en fasse un package pour fun_plug...

https://github.com/matthewfl/node-host

http://matthewfl.com/category/jsapp-us

NodeJS application platform engine fun_plug
NodeCloud - Node.js resources http://www.nodecloud.org/
Tue Mar 20 00:09:29 2012 archive.org
QRCode
thumbnail

les ressources les plus populaires en rapport avec nodeJS
c'est la que j'ai trouvé Cloud9

nodejs ressource annuaire
ajaxorg/cloud9 · GitHub https://github.com/ajaxorg/cloud9/
Tue Mar 20 00:08:36 2012 archive.org
QRCode
thumbnail

un IDE en ligne pour css html js et nodejs ;)

a tester d'urgence...

et le patch pour la récuperation des sous module git :
http://h33t.com/details.php?id=61344f3b11c7b3e924f645785f9ffea122c4dbec

nodejs ide javascript css html
NodeJs - fun_plug - Installer npm - Memiks http://memiks.fr/article3/nodejs-fun-plug-installer-npm
Fri Feb 17 19:01:27 2012 archive.org
QRCode
thumbnail

Un petit article que j'ai écrit suite à la publication de mon package permettant d'avoir nodejs sur les NAS utilisant fun_plug ffp 0.7

Cet article explique comment installer npm et palier au manque du binaire /usr/bin/env et son replacement par /ffp/bin/env

fun_plug ffp nodejs npm nas
Node.JS partie 3 - Première application Node.js et HTML5 - Web Tambouille http://www.web-tambouille.fr/2011/03/8/node-js-partie-3-premiere-application-node-js-et-html5-express-socket-io.html
Wed Feb 15 01:11:12 2012 archive.org
QRCode
thumbnail

http://howtonode.org/hello-node
http://blog.new-bamboo.co.uk/2009/12/7/real-time-online-activity-monitor-example-with-node-js-and-websocket
http://joyeur.com/2010/12/10/installing-node-and-npm/

http://npmjs.org/

http://coffeescript.org/

npm node nodejs how html5 runtime
Build node.js on OpenEmbedded (natively, not cross-compiled, no bitbake) http://fastr.github.com/articles/Node.js-on-OpenEmbedded.html
Mon Feb 13 17:34:39 2012 archive.org
QRCode

Compiler NodeJS sur ARM...
http://forum.qnap.com/viewtopic.php?f=50&t=45603&sid=e6cfa1352daa0c00a2b3b345989dd4a0&start=15
http://old.nabble.com/Illegal-instruction-on-ARM-td33119914.html
http://stackoverflow.com/questions/6788768/cannot-build-node-on-sheevaplug-armv5t-with-debian-squeeze
http://www.wigwag.com/devblog/cross-compile-v8-target-arm/
http://code.google.com/p/go/issues/detail?id=2533
https://github.com/joyent/node/issues/2131#issuecomment-3208846
http://stackoverflow.com/questions/6788768/cannot-build-node-on-sheevaplug-armv5t-with-debian-squeeze
http://www.it-wars.com/article305/compiler-node-js-pour-arm-v5
http://www.it-wars.com/article181/
http://comments.gmane.org/gmane.comp.lang.javascript.v8.general/2870
http://comments.gmane.org/gmane.comp.lang.javascript.nodejs/15708
http://repo.or.cz/w/a2jmidid.git/commitdiff/1e746c65bb5fbd39dfa1de297abd1052ad00bd81
http://us.generation-nt.com/answer/bug-598704-lash-ftbfs-alpha-error-mcontext-t-has-no-member-named-gregs-help-200513411.html
http://codereview.chromium.org/3161009/diff/1/2

arm nodejs compile ffp
Node v0.6.10 « node blog http://blog.nodejs.org/2012/02/02/node-v0-6-10/
Tue Feb 7 23:01:13 2012 archive.org
QRCode
thumbnail

Allez on test l'install sur le NAS ce soir ?

http://www.it-wars.com/article305/compiler-node-js-pour-arm-v5

nodejs nas arm
4759 links, including 1673 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn